-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepagedemo.html
139 lines (123 loc) · 4.05 KB
/
homepagedemo.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
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Urban Essentials</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
}
.container {
width: 85%;
margin: auto;
overflow: hidden;
}
header {
background-color: #1a1a1a;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 24px;
}
header nav {
margin-top: 10px;
}
header nav a {
color: #fff;
text-decoration: none;
margin: 0 15px;
font-size: 14px;
transition: color 0.3s ease;
}
header nav a:hover {
color: #00bcd4;
}
.showcase {
background-color: #e0e0e0;
text-align: center;
padding: 50px 20px;
}
.showcase h1 {
font-size: 36px;
color: #1a1a1a;
}
.showcase p {
font-size: 18px;
color: #555;
}
.items {
margin: 20px 0;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.items h2 {
text-align: center;
color: #1a1a1a;
margin-bottom: 20px;
}
.items ul {
list-style: none;
padding: 0;
}
.items ul li {
padding: 10px 0;
border-bottom: 1px solid #e0e0e0;
color: #555;
}
.items ul li:last-child {
border-bottom: none;
}
footer {
background-color: #1a1a1a;
color: #fff;
text-align: center;
padding: 10px 0;
font-size: 14px;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<h1>Urban Essentials</h1>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
</header>
<section class="showcase">
<h1>Welcome to Urban Essentials</h1>
<p>Your go-to store for everyday essentials!</p>
</section>
>
<section class="items container">
<h2>Items</h2>
<ul>
<li><strong>Staple Foods:</strong> Rice (Basmati, Sona Masoori), Wheat Flour (Atta), Pulses (Toor Dal, Moong Dal, Chana Dal), and Salt.</li>
<li><strong>Spices:</strong> Turmeric, Red Chili Powder, Coriander Powder, Cumin, Garam Masala, and more.</li>
<li><strong>Cooking Oils:</strong> Sunflower Oil, Mustard Oil, Groundnut Oil, Olive Oil, and Coconut Oil.</li>
<li><strong>Snacks and Beverages:</strong> Biscuits, Cookies, Tea (Black, Green, Herbal), Coffee (Instant, Filter), Soft Drinks, and Juices.</li>
<li><strong>Ready-to-Eat Products:</strong> Bread, Idli/Dosa Batter, and Instant Noodles.</li>
<li><strong>Cleaning Supplies:</strong> Dishwashing Liquid, Floor Cleaners, Detergents, and Bathroom Cleaners.</li>
<li><strong>Personal Care:</strong> Shampoos, Soaps, Toothpaste, and Deodorants.</li>
<li><strong>Miscellaneous:</strong> Paper Products (Tissues, Toilet Paper), Kitchen Essentials (Aluminum Foil, Cling Film), and Batteries.</li>
<li><strong>Fresh Produce:</strong> Fruits and Vegetables (Depending on the season and local availability).</li>
<li><strong>Dairy Products:</strong> Milk (Fresh Milk, Packaged Milk), Butter, Ghee, Cheese, and Yogurt.</li>
</ul>
</section>
<footer>
<p>Contact us: 123-456-7890 | Location: XYZ, Bengaluru, Karnataka</p>
</footer>
</body>
</html>