-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
84 lines (79 loc) · 1.94 KB
/
Copy pathcss.html
File metadata and controls
84 lines (79 loc) · 1.94 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
.upper{
display: flex;
justify-content: space-around;
background: rgb(106, 231, 224);
}
.heading{
/* display: flex; */
border: 1px solid;
background: rgb(228, 209, 173);
height: 40px;
justify-content: space-around;
display: flex;
align-items: center;
}
.image-container > div >img{
width: 50px;
height: 50px;
/* margin-top: 10px; */
object-fit: cover;
}
.image-container{
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.image-container > div{
display: flex;
align-items: center;
gap: 10px;
}
.copy{
/* justify-content: left; */
margin: 5px;
display: flex;
justify-content: end;
}
body{
margin: 0px;
padding: 0px;
font-size: 14px;
font-weight: 500;
}
.main-body{
margin: 0px 10px;
}
</style>
</head>
<body>
<div class="main-body">
<div class="upper">
<div>Home</div>
<div>Mission</div>
<div>Careers</div>
<div>Contact Us</div>
</div>
<div class="heading">
<label>Heading</label>
</div>
<div class="image-container">
<div>
<img src="./images/camera.jpeg" alt="camera">
<div>Image 1</div>
</div>
<div>
<img src="./images/couples.jpeg" alt="music">
<div>Image 2</div>
</div>
</div>
<div class="copy">
<p style="margin: 20px;">© copyright</p>
</div>
</div>
</body>
</html>