-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.html
54 lines (50 loc) · 1.22 KB
/
dropdown.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#seventh {
position: relative;
width: 90%;
margin: auto;
}
.bottom-left {
position: absolute;
bottom:1%;
left: 2%;
color:WHITE;
}
#half{
display: flex;
width: 90%;
margin: auto;
gap:1% 1%;
}
</style>
</head>
<body>
<div id="seventh">
<!-- <img src="./5.svg" alt="Snow" style="width:100%;"> -->
<div class="bottom-left">
<h2><b>NEED THE RIGHT JACKET</b></h2>
<p><u>Meet Your Match</u></p>
</div>
</div>
<div id="half">
<div id="seventh">
<img src="https://columbia.scene7.com/is/image/ColumbiaSportswear2/37319_C_U_Q1_Rainwear_MensSupercat_Ski-v2_XL?$aem_pjpeg$" alt="Snow" style="width:100%;">
<div class="bottom-left">
<h2><b>WARM ALL OVER</b></h2>
<p><u>Shop Fleece</u></p>
</div>
</div>
<div id="seventh">
<img src="https://columbia.scene7.com/is/image/ColumbiaSportswear2/37319_C_U_Q1_Rainwear_MensSupercat_Fleece_XL?$aem_pjpeg$" alt="Snow" style="width:100%;">
<div class="bottom-left">
<h2><b>GEAR UP TO DROP IN</b></h2>
<p><u>Shop Ski & Snow</u></p>
</div>
</div>
</div>
</body>
</html>