-
Notifications
You must be signed in to change notification settings - Fork 0
/
teams.html
83 lines (81 loc) · 2.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ultimate Frisbee-Home</title>
<link rel="stylesheet" href="css/hw1.css">
</head>
<body>
<h1>Ultimate Frisbee</h1>
<nav>
<a href="index.html">Home</a>
<a href="teams.html" class="active">Teams</a>
<a href="history.html">History</a>
<a href="https://www.usaultimate.org/">USA Ultimate</a>
</nav>
<img href="https://commons.wikimedia.org/wiki/File%3AUltimate_Frisbee%2C_Jul_2009_-_17.jpg" src="Ultimate_Frisbee,_Jul_2009_-_19.jpg" alt="Ultimate Frisbee">
<img href="https://commons.wikimedia.org/wiki/File%3AUltimate_Frisbee_Colorado_Cup_2005.jpg"src="512px-Ultimate_Frisbee_Colorado_Cup_2005.jpg" alt="Colorado Cup">
<img href="https://www.flickr.com/photos/paradisecoastie/15409853738/"src="15409853738_7dbfbfbac7_k.jpg" alt="paradisecoastie">
<section >
<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>
</body>
</html>