-
Notifications
You must be signed in to change notification settings - Fork 0
/
teams.html
90 lines (86 loc) · 2.88 KB
/
teams.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ultimate Frisbee - Teams</title>
<link rel="stylesheet" href="css/hw1.css">
<link rel="icon" type="image/png" href="images/frisbee1.png">
</head>
<body>
<header>
<h1>Ulimate Frisbee Teams</h1>
<nav>
<a href="index.html">Home</a>
<a href="history.html" class = "active">Teams</a>
<a href="history.html">History</a>
<a href="http://www.usaultimate.org/index.html" target="_blank">USA Ultimate</a>
</nav>
</header>
<main>
<aside class = "left">
<a href="https://commons.wikimedia.org/wiki/File%3AUltimate_Frisbee%2C_Jul_2009_-_17.jpg"><img src="https://upload.wikimedia.org/wikipedia/commons/5/5d/Ultimate_Frisbee%2C_Jul_2009_-_19.jpg" alt="Creative Common Ultimate Photo" title="By Ed Yourdon [CC BY-SA 2.0 (http://creativecommons.org/licenses/by-sa/2.0)], via Wikimedia Commons"/> </a>
<a href="https://commons.wikimedia.org/wiki/File%3AUltimate_Frisbee_Colorado_Cup_2005.jpg"><img alt="Ultimate Frisbee Colorado Cup 2005" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Ultimate_Frisbee_Colorado_Cup_2005.jpg/512px-Ultimate_Frisbee_Colorado_Cup_2005.jpg"/></a>
<a href="https://www.flickr.com/photos/paradisecoastie/15409853738/" title="Ultimate Frisbee"><img src="https://farm4.staticflickr.com/3948/15409853738_7dbfbfbac7_k.jpg" alt="Ultimate Frisbee"></a>
</aside>
<section class = "right">
<h2>College Teams</h2>
<p>This is not meant to be a comprehensive list of all the teams, just a sampling from around the United States. I focused on the ones that I though had cools names.</p>
<table>
<tr><th>Team Name</th>
<th>Location</th>
<th>League Type</th></tr>
<tr>
<td>Afterburn - Air Force</td>
<td>Colorado</td>
<td>Men's</td>
</tr>
<tr>
<td>Cold Front (Bates College)</td>
<td>Maine</td>
<td>Women's</td>
</tr>
<tr>
<td>Disco Inferno (Brown University)</td>
<td>Rhode Island</td>
<td>Women's</td>
</tr>
<tr>
<td>Bad Habit (Catholic University)</td>
<td>Washington DC</td>
<td>Men's</td>
</tr>
<tr>
<td>Jive Turkeys (Dickinson College)</td>
<td>Pennsylvania</td>
<td>Both</td>
</tr>
<tr>
<td>Knights of the Round Disc(Longwood College)</td>
<td>Virginia</td>
<td>Men's</td>
</tr>
<tr>
<td>Ninjas (University of Minnesota)</td>
<td>Minnesota</td>
<td>Women's</td>
</tr>
<tr>
<td>Flying Squirrels (Hendrix College)</td>
<td>Arizona</td>
<td>Men's</td>
</tr>
<tr>
<td>Superfly (Yale)</td>
<td>Connecticut</td>
<td>Men's</td>
</tr>
<tr>
<td>Flywheel (University of Michigan)</td>
<td>Michigan</td>
<td>Women's</td>
</tr>
</table>
</section>
</main>
</body>
</html>