-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutshopsmart.html
170 lines (161 loc) · 5.57 KB
/
aboutshopsmart.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About Smart Shop</title>
<!-- Bootstrap CSS -->
<link
href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="about.css" />
<style>
body {
font-family: Arial, sans-serif;
background-color: #f8f9fa;
}
.navbar {
background-color: black;
}
.navbar-brand,
.nav-link {
color: #fff !important;
}
.navbar-nav .nav-link:hover {
color: #d4d4d4 !important;
}
.container {
background-color: #fff;
padding: 2rem;
border-radius: 0.5rem;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1,
h2 {
color: #007bff;
}
hr {
border-top: 2px solid #007bff;
}
footer {
background-color: black;
color: #fff;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="shoes_home.html">Home</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="shoes.html">Shoes</a>
</li>
<li class="nav-item">
<a class="nav-link" href="toys.html">Toys</a>
</li>
<li class="nav-item">
<a class="nav-link" href="books.html">Books</a>
</li>
<li class="nav-item">
<a class="nav-link" href="games.html">Games</a>
</li>
</ul>
</div>
</nav>
<div class="container mt-5">
<h1 class="text-center mb-4"><b>About Smart Shop</b></h1>
<h2 class="mb-4">Discover a World of Exciting Products</h2>
<p>
At Smart Shop, we pride ourselves on offering a vast selection of
high-quality products that cater to all your needs. Whether you're
looking for toys to ignite imagination, trendy shoes to step out in
style, thrilling games for immersive entertainment, or captivating books
to indulge in reading, we have you covered.
</p>
<hr />
<div class="row">
<div class="col-md-6">
<h2>TOYS</h2>
<p>
Let your children's imagination run wild with our extensive
collection of toys. From educational building blocks that enhance
creativity to action figures that inspire adventurous play, we have
a wide range of toys that entertain and educate.
</p>
<hr />
</div>
<div class="col-md-6">
<h2>SHOES</h2>
<p>
Walk with confidence and style with our diverse selection of shoes.
Discover the latest trends in sneakers, elegant dress shoes for
special occasions, comfortable boots for outdoor adventures, and
athletic footwear that combines fashion with functionality. We offer
shoes for men, women, and children, ensuring that everyone can find
the perfect fit.
</p>
<hr />
</div>
</div>
<div class="row">
<div class="col-md-6">
<h2>GAMES</h2>
<p>
Experience thrilling gaming adventures with our vast assortment of
games. Whether you're a console gamer or prefer the latest PC
titles, we have a wide range of games for all platforms. From
action-packed adventures to strategic challenges and multiplayer
fun, our game collection will keep you entertained for hours on end.
</p>
<hr />
</div>
<div class="col-md-6">
<h2>BOOKS</h2>
<p>
Immerse yourself in the world of literature with our curated
selection of books. Dive into gripping novels, gain knowledge from
insightful non-fiction works, explore self-help guides that inspire
personal growth, or unleash your inner chef with our collection of
cookbooks. With a variety of genres and bestsellers to choose from,
you'll find the perfect book to captivate your mind.
</p>
<hr />
</div>
</div>
<h2 class="mt-4">ARTS AND CRAFTS</h2>
<p>
Explore your creative side with our selection of arts and crafts
supplies. From painting to sculpting, we have everything you need to
bring your artistic visions to life. Whether you're a professional
artist or just starting out, our range of quality materials will help
you achieve your creative goals.
</p>
<hr />
</div>
<footer style="
background-color: black;
color: white;
padding: 10px;
text-align: center;
">
<p style="margin: 0;text-align: center; ">© 2024 Shop Smart. All rights reserved.</p>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>