-
Notifications
You must be signed in to change notification settings - Fork 0
/
index3.html
83 lines (73 loc) · 2.36 KB
/
index3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.midbox{
border:0px solid red;
height:auto;
width: 100%;
/* box-shadow: rgba(0,0,0,24)0px 3px 8px; */
display: flex;
justify-content: space-evenly;
}
.midbox>div{
width: 11%;
text-align: center;
font-weight: bold;
}
.midbox>div>img{
width: 100%;
height: auto;
border-radius: 50%;
}
#shop{
text-align: center;
background-color: rgb(245, 190, 199) ;
height: 50px;
font-size: 40px;
box-shadow: rgba(240, 46, 170, 0.4) 0px 5px, rgba(240, 46, 170, 0.3) 0px 10px, rgba(240, 46, 170, 0.2) 0px 15px, rgba(240, 46, 170, 0.1) 0px 20px, rgba(240, 46, 170, 0.05) 0px 25px;
}
</style>
</head>
<body>
<h2 id="shop">SHOP FROM CATEGORIES</h2>
<div class="midbox">
<div>
<img src="https://files.myglamm.com/site-images/original/SKin-1-2.png"/>
<p>Skin</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Lips-3.png"/>
<p>Lips</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Superfoods-Model-120-X-120-px_2.jpg"/>
<p>Hair</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Eyes-4.png"/>
<p>Eyes</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Face-5.png"/>
<p>Face</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Nails-1.png"/>
<p>Nails</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/App-PersonalCare_2.png"/>
<p>Sanitizing Care</p>
</div>
<div>
<img src="https://files.myglamm.com/site-images/original/Bath.png"/>
<p>Bath and Body</p>
</div>
</div >
</body>
</html>