forked from dikshantmali/Hacktoberfest2020-HTML-CSS-WEB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshoping-websites.html
More file actions
139 lines (136 loc) · 4.11 KB
/
shoping-websites.html
File metadata and controls
139 lines (136 loc) · 4.11 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head > <title>MY shopping-page</title>
<style>
body{
background-image:url('https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQVV94PJ3IcatfCM2Vus19y_u9dPB9hH0N9bA&usqp=CAU');
background-size: cover;
}
.marquee-text
{
color: rgb(70, 14, 70);
font-weight:bold;
text-shadow:0 0 30px rgb(110, 186, 224),0 0 25px rgb(110, 186, 224);
}
.sub-h{
text-align:center;
color: black;
font-family: 'Merriweather', serif ;
}
.flex-header
{
display: flex;
flex-direction: column;
align-items: center;
font-weight: bold;
}
.title
{
color: black;
font-family: 'Merriweather', serif ;
font-size: 55px;
text-shadow: 2px 2px 3px rgb(54, 51, 51);
font-weight: bolder;
border-radius: 15px;
padding: 5px;
}
.img
{
width:140px;
height:135px;
box-shadow:1px 1px 2px 2px ;
}
.link-color{ color: grey }
.flex-main
{
display: flex;
justify-content:center;
}
.box{
padding:1%;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@700&display=swap" rel="stylesheet">
</head>
<body >
<header class="flex-header">
<div class="title">
🛒Online shopping websites
</div>
</header>
<marquee class="marquee-text">🔶 click on the below logos to visit that website 👇🏻</marquee>
<main>
<h2 class="sub-h">
Shop Dresses here :</h2>
<div class="flex-main">
<div class="box">
<a class="link-color" href="https://www.myntra.com/">
<img src="https://qph.fs.quoracdn.net/main-qimg-cc7d9689b35800eab7166059eb3f049a.webp"
class="img"/>
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.amazon.in/b?ie=UTF8&node=6648217031">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTitnqS0pg8-32_vIVnDkyjFv2wcx6Y45N9PQ&usqp=CAU"
class="img"/>
</a>
</div >
<div class="box">
<a class="link-color"href="https://www.flipkart.com/clothing-and-accessories/pr?sid=clo">
<img src="https://www.businessinsider.in/photo/47452926/flipkarts-got-a-cool-newlogo-check-it-out-here.jpg"
class="img"/>
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.koovs.com/">
<img src="https://images.yourstory.com/cs/images/companies/koovs-1590546147513.jpg?fm=png&auto=formatar=1:1&mode=fill&fill=solid"
class="img"/>
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.snapdeal.com/products/women-apparel">
<img src="https://i.pinimg.com/originals/b4/1c/d2/b41cd2259fae83ce40e1e848c3c7d1b7.png"
class="img"/>
</a>
</div>
</div>
<h2 class="sub-h">
Groceries :</h2>
<div class="flex-main">
<div class="box">
<a class="link-color" href="https://grofers.com/">
<img src="https://static.dribbble.com/users/978176/screenshots/6193799/grofers_bag_thumbnail_teaser.png"
class="img"/>
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.bigbasket.com/">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcR7TPiR5Gd-xo_sJf-UVUqYNsysvYt_pkiV5g&usqp=CAU"
class="img"/>
</a>
</div >
<div class="box">
<a class="link-color"href="https://www.amazon.in/pantry-online-grocery-shopping-store/b?ie=UTF8&node=9574332031">
<img src="https://prod-cdn-thekrazycouponlady.imgix.net/wp-content/uploads/2020/07/amazon-pantry-snap-ebt-1593644810-1593644810.jpg?auto=compress,format&fit=max"
class="img">
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.flipkart.com/grocery-supermart-store?marketplace=GROCERY">
<img src="https://www.indiaaheadnews.com/wp-content/uploads/2019/05/Flipkart-Supermart.jpg"
class="img"/>
</a>
</div>
<div class="box">
<a class="link-color" href="https://www.spencers.in/">
<img src="https://img1.pnghut.com/t/7/24/22/eid5mUBsyC/supermarket-shopping-centre-retail-grocery-store-online-grocer.jpg
"
class="img"/>
</a>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>