-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.44 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Detroit sports HTML</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>detroit #sportz</h1>
<img src="http://image.mlive.com/home/mlive-media/pgfull/img/detroit/photo/2015/10/19/-a971380ddb6a7bc8.JPG" alt="svg bike" />
<div>Photo Credit: Mike Mulholland, MLIVE Media Group</div>
<a href="http://image.mlive.com/home/mlive-media/pgfull/img/detroit/photo/2015/10/19/-a971380ddb6a7bc8.JPG">Original Image</a>
<main>
<h2>Detroit sports. Or: the culture surrounding the franchises and fandom of the following Detroit-located professional sports teams: Lions, Pistons, Red Wings, Tigers</h2>
<section id="inatable">
<h3>In a table:</h3>
<table border=0>
<tr>
<th>SPORT</th>
<th>FRANCHISE</th>
</tr>
<tr>
<td>baseball</td>
<td>Tigers</td>
</tr>
<tr>
<td>basketball</td>
<td>Pistons</td>
</tr>
<tr>
<td>football</td>
<td>Lions</td>
</tr>
<tr>
<td>hockey</td>
<td class="red">Red Wings</td>
</tr>
</table>
</section>
<div id="POD">Cool site: Detroit Lions fan blog <a href="http://www.prideofdetroit.com/">Pride of Detroit</a>
<ul>
<li>It seems like they organize the site as well as code well pretty well. The site is easy to navigate, it's engaging. I can try understand some of the code which uses multiple elements we've learned so far.</li>
</ul>
</div>
<footer><a href="resources.html"> Find out more</a></footer>
</main>
</body>
</html>