-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
147 lines (125 loc) · 4.13 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
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
<!DOCTYPE html>
<html>
<!--comment-->
<head>
<title>Test</title>
</head>
<body>
<main>
<section>
<h2>Tables</h2>
<h3>Table 1</h3>
<table>
<thead>
<tr>
<th>Team </th>
<th>Season </th>
<th>Position </th>
</tr>
</thead>
<tbody>
<tr>
<td>Ansbach Grizzlies</td>
<td>2015</td>
<td>TE/WR</td>
</tr>
<tr>
<td>Ansbach Grizzlies</td>
<td>2016</td>
<td>WR/RB</td>
</tr>
<tr>
<td>Nuernberg Rams</td>
<td>2017</td>
<td>RB</td>
</tr>
</tbody>
</table>
<hr>
<h3>Table 2</h3>
<table>
<thead>
<tr>
<th>Organization</th>
<th>Team</th>
<th>Season </th>
<th>Position </th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>Ansbach Grizzlies</td>
<td>U19</td>
<td>2015</td>
<td>TE/WR</td>
</tr>
<tr>
<td>Ansbach Grizzlies</td>
<td>U19</td>
<td>2016</td>
<td>WR/RB</td>
</tr>
<tr>
<td>Nuernberg Rams</td>
<td>U19</td>
<td>2017</td>
<td>RB</td>
<td>Season ending injury</td>
</tr>
<tr>
<td>Nuernberg Rams</td>
<td>U19</td>
<td>2018</td>
<td>RB</td>
<td>out for half the season</td>
</tr>
<tr>
<td>Nuernberg Rams</td>
<td>Men's</td>
<td>2018</td>
<td>RB</td>
</tr>
<tr>
<td>Erlangen Sharks</td>
<td>Men's</td>
<td>2019</td>
<td>RB/WR</td>
<td>Season ending injury</td>
</tr>
</tbody>
</table>
</section>
<hr>
<section>
<!--Forms-->
<h2>Forms</h2>
<form action = "/search/">
<input type = "text" placeholder="username"><br>
<input type = "password" placeholder="password"><br>
<input type = "date" placeholder="birthday"><br>
</form>
<h3>Labels</h3>
<form>
<label for="username">Enter username</label>
<input id="username" type = "text" placeholder="username"><br>
<label for="password">Enter password</label>
<input id="password" type = "password" placeholder="password"><br>
<label for="date">Enter birthday</label>
<input id="date" type = "date" placeholder="birthday"><br>
</form>
<h3>Buttons</h3>
<form action="index.html">
<label for="username">Enter username</label>
<input id="username" type = "text" placeholder="username" name="username"><br>
<label for="password">Enter password</label>
<input id="password" type = "password" placeholder="password"><br>
<label for="date">Enter birthday</label>
<input id="date" type = "date" placeholder="birthday"><br>
<button type="button">Submit</button>
<input type="submit" value="Klick mich">
</form>
</section>
</main>
</body>
</html>