-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore1.html
155 lines (120 loc) · 3.83 KB
/
store1.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
<html>
<head>
<title>Products</title>
<style>
body{
margin: 0px;
width: 100%;
font-family: Tahoma;
background-image:url("se/kit3.png" )
}
header{
height: 60px;
border: 0px ;
}
h1{
height: 20px;
margin:0px;
padding: 10px;
color:white;
text-align: center;
}
nav{
height: 40px;
background: white;
padding: 15px 0px 15px 0px;
text-align: center;
}
nav li{
list-style: none;
display: inline;
font-size: 20px;
}
nav li a{
color: black;
margin: 18px;
text-decoration: none;
}
.maincontainer{
width: 100%;
float: left;
display: block;
margin-left: 5px;
}
.prod{
float: left;
width: 22%;
height: 250px;
margin:0px 0px 15px 25px;
}
.prod:hover{
background-color: #87ceeb;
}
.prod img{
height:220px;
width: 270px;
margin-left:7px;
}
.prod p{
margin-top: 5px;
width: 100%;
}
span{
border: 1px solid #7716e1;
position: relative;
padding: 12px;
border-radius: 12px 12px;
top:-150px;
background-color: #7716e1;
color: white;
display: none;
}
.prod:hover span{
display: inline;
cursor: pointer;
}
#logo{
float :left
}
#cart{
float :right
}
</style>
</head>
<body>
<header>
</header>
<nav>
<img id="logo" src="se/logo2.png" width="120px" height="50px">
<img id="cart" src="se/logo3.png" width="120px" height="50px">
<ul>
<li> <a href="index.html" title="HomePage" class="menu"><font color="black">Home</font></a></li>
<li> <a href="About Us.html" title="About Us" class="menu"><font color="black">About us</font></a></li>
<li> <a href="store1.html" title="Store" class="menu"><font color="black">Store</font></a></li>
<li> <a href="blog.html" title="Blog" class="menu"><font color="black">Blog</font></a></li>
<li> <a href="Contactpage.html" title="Contactpge" class="menu"><font color="black">Contact Us</font></a></li>
</ul>
</nav>
<div class="maincontainer">
<h3 id="p1"> <font color="white">list of groceries and it prices</font></h3>
<script>
document.getElementById('p1').style.textAlign="center";
document.getElementById('p1').style.color="lue";
</script>
<br>
<div class="prod"><img src="se/pair4.png "><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/cab.jpg" ><p align="center"><b> <font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/car.jpg" ><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/aim.jpg"><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/egg.png" ><p align="center"><b><font color="white"> 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/rice.png" ><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/roy.jpg" ><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/meat.png"><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/pair5.png" ><p align="center"><b><font color="white"> GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/teabag.png" ><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
<div class="prod"><img src="se/snack1.png" ><p align="center"><b><font color="white">GH¢ 1.00 <span ><Buy</font></span></b></p></div>
<div class="prod"><img src="se/fruit1.png" ><p align="center"><b><font color="white">GH¢ 1.00 <span >Buy</font></span></b></p></div>
</div>
<script type="text/javascript" src="jquery-latest.js"></script>
</body>
</html>