-
Notifications
You must be signed in to change notification settings - Fork 0
/
golfbag.html
197 lines (194 loc) · 5.07 KB
/
golfbag.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Know your Golf Equipment</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta
name="description"
content="A guide for any type of golfer looking to buy new golf equipment, but dont know where to start!"
/>
<meta
name="keywords"
content="buying golf equipment, golf clubs, buying golf clubs, beginner golfer, what golf club to buy, golf"
/>
<style>
h1 {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
body {
background-color: rgb(227, 238, 253);
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
background-color: rgb(5, 84, 204);
margin-left: auto;
margin-right: auto;
width: 100%;
list-style-type: none;
overflow: hidden;
display: block;
}
.topnav a {
color: white;
text-align: center;
padding: 14px 45px;
font-size: 16px;
float: left;
text-decoration: none;
display: block;
}
.nav:hover {
font-weight: bold;
}
a:hover {
font-weight: bold;
}
#header {
text-align: left;
}
</style>
<body>
<h1>Golfers Heaven</h1>
<nav>
<div class="topnav">
<a href="index.html" class="heading">Home</a>
<a href="driver.html" class="heading">Drivers</a>
<a href="woods.html" class="heading">Fairway Woods</a>
<a href="irons.html" class="heading">Irons</a>
<a href="wedges.html" class="heading">Wedges</a>
<a href="putter.html" class="heading">Putters</a>
<a href="golfbag.html" class="heading">Golf Bags</a>
<a href="contact.html" class="heading">Contact</a>
<a href="sitemap.html" class="heading">Sitemap</a>
</div>
</nav>
<div>
<h1>Golf Bags</h1>
<table style="width: 100%">
<tr id="header">
WORK IN PROGRESS
<th>Club</th>
<th>Price</th>
<th>Why it made the list</th>
<th>Golf club product page</th>
</tr>
<tr>
<td class="Pic">
<img
id=""
src="images/"
alt=""
title=" "
width="300"
/>
<li>
<strong></strong>
</li>
</td>
<td class="price">
<a
href=""
target="_blank"
>$
</a>
</td>
<td class="skill">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<td class="product">
<button>
<a
href=""
target="_blank"
>Click Here</a
>
</button>
</td>
</tr>
<tr>
<td class="Pic">
<img
id=""
src="images/"
alt=""
title=""
width="300"
/>
<li>
<strong> </strong>
</li>
</td>
<td class="price">
<a
href=""
target="_blank"
>$
</a>
</td>
<td class="skill">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<td class="product">
<button>
<a
href=""
target="_blank"
>Click Here</a>
</button>
</td>
</tr>
<tr>
<td class="Pic">
<img
id=""
src="images/"
alt=""
title=""
width="300"
/>
<li>
<strong></strong>
</li>
</td>
<td class="price">
<a
href=""
target="_blank"
>$
</a>
</td>
<td class="skill">
<ul>
<li></li>
<li></li>
<li></li>
</ul>
</td>
<td class="product">
<button>
<a
href=""
target="_blank"
>Click Here</a>
</button>
</td>
</tr>
</table>
</div>
</body>
</head>
</html>