-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproduct.html
119 lines (119 loc) · 3.01 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
<!doctype html>
<!-- Website template by freewebsitetemplates.com -->
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>product - Frozen Yogurt Shop</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="stylesheet" type="text/css" href="css/mobile.css">
<script src="js/mobile.js" type="text/javascript"></script>
</head>
<body>
<div id="page">
<div id="header">
<div>
<a href="index.html" class="logo"><img src="images/logo.png" alt=""></a>
<ul id="navigation">
<li>
<a href="index.html">Home</a>
</li>
<li class="menu">
<a href="about.html">About</a>
<ul id="selected" class="primary">
<li class="">
<a href="product.html">Product</a>
</li>
</ul>
</li>
<li class="menu">
<a href="blog.html">Blog</a>
<ul class="secondary">
<li>
<a href="singlepost.html">Single post</a>
</li>
</ul>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
<div id="body">
<div class="header">
<div>
<h1>Products</h1>
</div>
</div>
<div>
<ul>
<li>
<h1>All Time Classic</h1>
<p>This website template has been designed by freewebsitetemplates.com for you, for free.</p>
</li>
<li>
<img src="images/kiwi.jpg" alt="">
<h2>Kiwi</h2>
</li>
<li>
<img src="images/mango.jpg" alt="">
<h2>Mango</h2>
</li>
<li>
<img src="images/cantaloupe.jpg" alt="">
<h2>Cantaloupe</h2>
</li>
</ul>
<ul>
<li>
<h1>Berry Special</h1>
<p>This website template has been designed by freewebsitetemplates.com for you, for free.</p>
</li>
<li>
<img src="images/blackberry.jpg" alt="">
<h2>blackberry</h2>
</li>
<li>
<img src="images/strawberry.jpg" alt="">
<h2>Strawberry</h2>
</li>
<li>
<img src="images/blueberry.jpg" alt="">
<h2>BLUEBERRY</h2>
</li>
</ul>
<ul>
<li>
<h1>Fruit Blast</h1>
<p>This website template has been designed by freewebsitetemplates.com for you, for free.</p>
</li>
<li>
<img src="images/grapes.jpg" alt="">
<h2>Grapes</h2>
</li>
<li>
<img src="images/green-apple.jpg" alt="">
<h2>Green Apple</h2>
</li>
<li>
<img src="images/pineapple.jpg" alt="">
<h2>Pineapple</h2>
</li>
</ul>
</div>
</div>
<div id="footer">
<div>
<div class="connect">
<a href="http://freewebsitetemplates.com/go/facebook/" class="facebook">facebook</a>
<a href="http://freewebsitetemplates.com/go/twitter/" class="twitter">twitter</a>
<a href="http://freewebsitetemplates.com/go/googleplus/" class="googleplus">googleplus</a>
<a href="http://pinterest.com/fwtemplates/" class="pinterest">pinterest</a>
</div>
<p>© 2023 Freeeze. All Rights Reserved.</p>
</div>
</div>
</div>
</body>
</html>