-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode - 3.html
More file actions
48 lines (35 loc) · 795 Bytes
/
Code - 3.html
File metadata and controls
48 lines (35 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<head>
<title>Code</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
display: flex;
align-items: top;
justify-content: center;
}
.main-box {
border: 5px dashed black;
height: 20rem;
width: auto;
margin-top: 10vh;
padding: 1rem;
}
img {
height: 100%;
width: auto;
}
</style>
</head>
<body>
<div class="main-box">
<img src="Images/Code - 3.jpg" alt="Image Not Available">
</div>
</body>
</html>