-
Notifications
You must be signed in to change notification settings - Fork 1
/
Products.php
86 lines (85 loc) · 4.48 KB
/
Products.php
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
<html>
<head>
<link rel="stylesheet" href="CSS/home-style.css">
<link rel="stylesheet" href="./CSS/product-style.css">
</head>
<header id="header">
<div id="brand">
<img id="header-img" src="assets/icon1.png" href="home.php"/>
</div>
<nav id="nav-bar">
<a class="nav-link" href="home.php">Home</a>
<a class="nav-link" href="FindGroup.php">Events</a>
<a class="nav-link" href="ConsultWithDoctor.php">Consult</a>
<a class="nav-link" href="Blog.php">Blog</a>
<a class="nav-link" href="profile.php">Profile</a>
</nav>
</header>
<body style="margin-top: 150px;">
<div id="home-content">
<input type="text" id="search-product" placeholder="Search products"></input>
</div>
<div id="content-home">
<div id='product-results'>
<div class='product-card'>
<img src='./assets/p1.jpeg' class='product-img'></img>
<a href='https://www.amazon.in/Reusable-Menstrual-Women-Medical-Silicone/dp/B07WZP3NPQ/ref=sr_1_3_sspa?dchild=1&keywords=menstrual+cup&qid=1605903686&sr=8-3-spons&psc=1&spLa=ZW5jcnlwdGVkUXVhbGlmaWVyPUFRRjJQV0I2QTNYSVEmZW5jcnlwdGVkSWQ9QTA5NjIzNzYzVE04T0xUT0tWTDQzJmVuY3J5cHRlZEFkSWQ9QTAwMjEwNDExMzdEVk9IV0Q4SkYmd2lkZ2V0TmFtZT1zcF9hdGYmYWN0aW9uPWNsaWNrUmVkaXJlY3QmZG9Ob3RMb2dDbGljaz10cnVl' style='text-decoration:none;color:black;'>
<div class='product-content'>
<h1 class='product-name'>Menstrual Cup</h1>
<h3 style="color:white;">Alternate menstrual hygiene product</h3>
</div></a>
</div>
</div>
<div id="product-results">
<div class="product-card">
<img src="./assets/p2.jpg" class="product-img"></img>
<a href="https://www.amazon.in/dp/B00S6KDGNE/ref=cm_sw_r_wa_apa_i_9xcUFbD6ZA55T?_encoding=UTF8&psc=1" style="text-decoration:none;color:black;">
<div class="product-content">
<h1 class="product-name">Hygeine Wash</h1>
<h3 style="color:white;">For personal hygiene</h3>
</div></a>
</div>
</div>
<div id="product-results">
<div class="product-card">
<img src="./assets/p3.jpg" class="product-img"></img>
<a href="https://www.amazon.in/Siddhayu-Painquit-Natural-Ayurvedic-Muscular/dp/B08CH2X993" style="text-decoration:none;color:black;">
<div class="product-content">
<h1 class="product-name">Pain-relief roll on</h1>
<h3 style="color:white;">Relief from cramps, backache,etc.</h3>
</div></a>
</div>
</div>
<div id="product-results">
<div class="product-card">
<img src="./assets/p4.jpg" class="product-img"></img>
<a href="https://www.amazon.in/dp/B084ZKFR5Q/ref=cm_sw_r_wa_apa_i_HwcUFb9QB625J" style="text-decoration:none;color:black;">
<div class="product-content">
<h1 class="product-name">Multi-vitamin Supplement</h1>
<h3 style="color:white;">For daily vitamin needs of women</h3>
</div></a>
</div>
</div>
<div id="product-results">
<div class="product-card">
<img src="./assets/p5.jpg" class="product-img"></img>
<a href="https://www.amazon.in/dp/B08JVD64Q3/ref=cm_sw_r_wa_apa_i_LvcUFbJPB8DW7" style="text-decoration:none;color:black;">
<div class="product-content">
<h1 class="product-name">Yoga mat</h1>
<h3 style="color:white;">Proper setup for yoga</h3>
</div></a>
</div>
</div>
<div id="product-results">
<div class="product-card">
<img src="./assets/p6.jpg" class="product-img"></img>
<a href="https://www.amazon.in/HealthyHey-Supplement-Women-100-Chelated/dp/B083RZ69ZN/r" style="text-decoration:none;color:black;">
<div class="product-content">
<h1 class="product-name">Iron supplement</h1>
<h3 style="color:white;">For supplementing iron levels in blood</h3>
</div></a>
</div>
</div>
</div>
</body>
</html>