-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dolo.html
103 lines (97 loc) · 2.64 KB
/
Dolo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dolo - ASHISH Medical Agency</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #4CAF50;
color: white;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #333;
}
nav a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #ddd;
color: black;
}
.container {
padding: 20px;
}
.product-details {
max-width: 600px;
margin: auto;
background-color: white;
box-shadow: 0 0 5px rgba(0,0,0,0.1);
text-align: center;
padding: 20px;
border-radius: 5px;
}
.product-details img {
width: 100%;
height: auto;
}
.product-details h2 {
font-size: 1.5em;
margin: 10px 0;
}
.product-details p {
color: #555;
}
footer {
text-align: center;
padding: 20px;
background-color: #333;
color: white;
position:-ms-page;
width: 100%;
bottom: 0;
}
button:hover{
background-color: #a0f487;
}
</style>
</head>
<body>
<header>
<h1>ASHISH Medical Agency</h1>
</header>
<nav>
<a href="index.html#home">Home</a>
<a href="index.html#cart">Add to Cart</a>
<a href="index.html#wishlist">Wishlist</a>
<a href="index.html#profile">My Profile</a>
<a href="index.html#contact">Contact Us</a>
</nav>
<div class="container">
<div class="product-details">
<img src="https://tse3.mm.bing.net/th?id=OIP.AxQXbzt33ddv2zt0MfBQHgHaE1&pid=Api&P=0&h=180" alt="dolo">
<h2>dolo</h2>
<p>Description: Effective pain and fever relief.</p>
<p>Price: Rs 10.00</p>
<button>Add to Cart</button>
<button onclick="location.href='payment.html'">Buy Now</button>
</div>
</div>
<footer>
<p>© Created by ASHISH & SHASHI. All rights reserved.</p>
</footer>
</body>
</html>