-
Notifications
You must be signed in to change notification settings - Fork 0
/
bio.html
52 lines (52 loc) · 1.65 KB
/
bio.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
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-type" />
<title>Location</title>
<script src="jquery.js"></script>
<script src="bio.js"></script>
<link href="bio.css" rel="stylesheet" type="text/css" charset="utf-8" />
</head>
<body>
<div id="header">
<img class="image_data" src="" id="primaryImage" height="60" width="60" />
<h1 class="data" id="name"></h1>
<dl>
<dt>Date of Birth:</dt>
<dd class="data" id="dateOfBirth"></dd>
<dt>Hometown:</dt>
<dd class="data" id="hometown"></dd>
<dt>Favorite Spot:</dt>
<dd class="data" id="favoriteSpot"></dd>
</dl>
</div>
<div id="bio">
<div class="section">
<h2>Bio</h2>
<div class="data content" id="athleteBio"></div>
</div>
<div class="section itemList" id="athleteQA">
<h2>Q & A</h2>
<div class="content">
<h3>Primary Shaper:</h3>
<p>Jason Stevenson (JS)</p>
</div>
<div class="content alt">
<h3>Home Beach:</h3>
<p>Pinetrees</p>
</div>
<div class="content">
<h3>Family:</h3>
<p>Girlfriend Mia, Brother Andy who is on the WCT tour with Bruce, Mom and Dad back in Hanalei</p>
</div>
</div>
<div class="section">
<h2>Other Sponsors</h2>
<div class="content">
<p class="data" id="otherSponsors"></p>
</div>
</div>
<div class="button" id="favorite_spot"><a href="#">Favorite Spot</a></div>
<div class="button" id="related_photos"><a href="#">Related Photos</a></div>
</div>
</body>
</html>