-
Notifications
You must be signed in to change notification settings - Fork 0
/
1222.html
124 lines (118 loc) · 3.19 KB
/
1222.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
<!DOCTYPE html>
<html>
<head>
<title>Healthyfy</title>
<link rel="stylesheet" type="text/css" href="1222.css">
</head>
<body>
<header>
<div class="logo">
<a href="./1222.html"><img src="./logo.png" alt="Healthyfy">
</a>
</div>
<form class="search-form" action="/" method="get">
<input type="text" name="search" placeholder="Type to search">
<button><img src="./search-removebg-preview.png" alt="Search"></button>
</form>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="hospital-main.html">Hospital</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div class="cart">
<a href="./cart.html"><img src="./cart.png" alt="Cart Logo">
</a>
</div>
<div class="profile">
<a href="#"><img src="./profile.png" alt="Profile Logo">
</a>
</div>
</header>
<main>
<section class="banner">
<h1>Welcome to My E-commerce Website</h1>
<p>Shop for the latest trends in fashion, home decor, and more.</p>
<a href="shop.html" class="button">Shop Now</a>
</section>
<section class="products">
<h2>New Arrivals</h2>
<div class="product-grid">
<a href="SkinCare.html">
<div class="product">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./skin/frontskin.jpg" alt="Avatar" style="width:248px;height:200px;">
</div>
<div class="flip-card-back">
<h1>Skin care products</h1>
<p>Skin care simplyfied for everyone</p>
</div>
</div>
</div>
<h3>Skin Care</h3>
<h5>Show More</h5>
</div>
</a>
<a href="Fitness.html">
<div class="product">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./fitness/frontfitness.jpg" alt="Avatar" style="width:248px;height:200px;">
</div>
<div class="flip-card-back">
<h1>Fitness</h1>
<p>Fitness that fits you for your Healthy Life</p>
</div>
</div>
</div>
<h3>Fitness</h3>
<h5>Show More</h5>
</div>
</a>
<a href="Nutrition.html">
<div class="product">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./Nutrition/frontnutrition.jpg" alt="Avatar" style="width:248px;height:200px;">
</div>
<div class="flip-card-back">
<h1>Nutrition</h1>
<p>Healthy eating in real life.</p>
</div>
</div>
</div>
<h3>Nutrition</h3>
<h5>Show More</h5>
</div>
</a>
<a href="WomensWellness.html">
<div class="product">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="./Women/frontwomen.jpg" alt="Avatar" style="width:248px;height:200px;">
</div>
<div class="flip-card-back">
<h1>Women's Wellness</h1>
<p>From your hair to down there, we've got your health covered.</p>
</div>
</div>
</div>
<h3>Women's Wellness</h3>
<h5>Show More</h5>
</div>
</a>
</div>
</section>
</main>
<footer>
<p>© 2023 My E-commerce Website</p>
</footer>
</body>
</html>