-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.html
120 lines (107 loc) · 4.31 KB
/
product.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Product</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Bona+Nova:ital,wght@0,400;0,700;1,400&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"/>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- 2120290-Md Shakil Ahmed -->
<header>
<div class="nav">
<h2>MedEasy</h2>
<p>An online pharmaceutical store by SK Pharma</p>
<ul class="kode-mono">
<li><a href="index.html">Home</a></li>
<li><a href="product.html">Product</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
<div class="background">
<img src="background" alt="" />
</div>
</div>
</header>
<div class="grid-container">
<div class="product">
<img src="Images/product1.jpg" alt="Product 1" />
<div class="product-name">Aglip 25mg</div>
<div class="product-description">Best Price ৳200.00</div>
</div>
<div class="product">
<img src="Images/product2.jpg" alt="Product 2" />
<div class="product-name">Esoral MUPS 20mg</div>
<div class="product-description">Best Price ৳250.00</div>
</div>
<div class="product">
<img src="Images/product3.jpg" alt="Product 3" />
<div class="product-name">Arocef 100mL</div>
<div class="product-description">Best Price ৳70.00</div>
</div>
<div class="product">
<img src="Images/product4.jpg" alt="Product 4" />
<div class="product-name">Augment 625mg</div>
<div class="product-description">Best Price ৳112.00</div>
</div>
<div class="product">
<img src="Images/product5.jpg" alt="Product 5" />
<div class="product-name">Ostocal Tab</div>
<div class="product-description">Best Price ৳56.00</div>
</div>
<div class="product">
<img src="Images/product6.jpg" alt="Product 6" />
<div class="product-name">Losectil SF</div>
<div class="product-description">Best Price ৳20.00</div>
</div>
<div class="product">
<img src="Images/product7.jpg" alt="Product 7" />
<div class="product-name">Aventy 50mg</div>
<div class="product-description">Best Price ৳680.00 </div>
</div>
<div class="product">
<img src="Images/product8.jpg" alt="Product 8" />
<div class="product-name">Amboten 100mL</div>
<div class="product-description">Best Price ৳92.00</div>
</div>
<div class="product">
<img src="Images/product9.jpg" alt="Product 9" />
<div class="product-name">Etorix 90mg</div>
<div class="product-description">Best Price ৳950.00</div>
</div>
</div>
<footer>
<div class="footer">
<div class="footer-container">
<div class="footer-info bona-nova-regular-italic">
<h2>Contact Us</h2>
<p>Road 12/A, Sector 10, Uttara, Dhaka, Bangladesh</p>
<p>Phone: +880 130 846 6291</p>
<p>Email: info@medeasypharmastore.com</p>
</div>
<div class="footer-social">
<h2>Follow Us</h2>
<ul>
<li>
<a href="#"><img src="Images/facebook.png" alt="Facebook" /></a>
</li>
<li>
<a href="#"><img src="Images/twitter.png" alt="Twitter" /></a>
</li>
<li>
<a href="#"
><img src="Images/instagram.png" alt="Instagram"
/></a>
</li>
</ul>
<h2>© 2024 SK Pharmaceutical Store. All rights reserved.</h2>
<h4>ProgrammerInfo: Shakil Ahmed (2120290@iub.edu.bd)</h4>
</div>
</div>
</div>
</footer>
</body>
</html>