-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
103 lines (100 loc) · 2.73 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
<!doctype html>
<html lang="en">
<head>
<title>Awesome Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta charset="utf-8"/>
<link href="http://fonts.googleapis.com/css?family=Droid+Sans+Mono" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="design/index.css">
</head>
<body>
<header role="banner">
<div>
<h1><span>Awesome</span> Boilerplate</h1>
<p>
<label><a href=#content>Jump To Content</a></label><br>
<label><a href=#footer>Jump To Footer</a></label><br>
<label><a href=#kitties>Jump To Kitties</a></label>
</p>
</div>
</header>
<main id="content">
<section>
<article>
<!--ToDo Input Fields-->
<form>
<div style="width: auto">
<label for="name">Name</label><input id="name" type="text"/>
</div>
<div>
<label for="vorname">Vorname</label><input id="vorname" type="text"/>
</div>
<div>
<label for="email">Email</label><input id="email" type="email"/>
</div>
<div>
<label for="tel">Telefonnummer</label><input id="tel" type="number"/>
</div>
<div>
<label for="gebDatum">Geburtsdatum</label><input id="gebDatum" type="date"/>
</div>
<div>
<label for="sel1">Liste</label>
<select id="sel1">
<option>UIB</option>
<option>IB</option>
<option>IMB</option>
</select>
</div>
<button type="submit">Abschicken</button>
</form>
</article>
</section>
<section>
<article>
<figure>
<div class="icon icon-learn"></div>
</figure>
<h3>Learn to Code</h3>
<p>
Mit der Vorlesung zu Webanwendungen lernst du nicht nur wie man geile
Webseiten erstellt, sondern auch wie Du effizienter Arbeiten kannst mit entsprechenden Tools.
</p>
</article>
<article>
<figure>
<div class="icon icon-power"></div>
</figure>
<h3>Get Superpowers</h3>
<p>
Mit den Meilensteinen wirst Du durch Aufgaben geführt um so nach und nach eine
vollständige Webapplikation zu entwickeln.
</p>
</article>
<article>
<figure>
<div class="icon icon-help"></div>
</figure>
<h3>Help Others</h3>
<p>
Das wichtigste hierbei ist allerdings auch anderen zu helfen und sie zu unterstützen.
</article>
<article>
<figure>
<div class="icon icon-follow"></div>
</figure>
<h3>Follow Us</h3>
<p>
Falls du fragen hast, kannst du dich jederzeit an
<a href="https://github.com/CodeKittey">@Codekittey</a>, wenden oder eine
Email schreiben: [email protected]
</p>
</article>
</section>
</main>
<footer id="footer">
<img src="img/nodeschool.svg">
</footer>
<script src="design/index.js"></script>
</body>
</html>