-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
87 lines (84 loc) · 2.54 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
<!doctype html>
<html lang="en">
<head>
<title>Awesome Boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" 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>
<a href="#content">Zum Inhalt</a><br>
<a href="#footer">Folge Uns</a><br>
<a href="#kitties">Anmeldung</a>
</p>
</div>
</header>
<main>
<section>
<article id ="kitties">
<header id="anmeldung"><h1>Anmeldung</h1></header>
<br/>
<input type="text" value="Name" />
<input type="text" value="Nachname" /><br/>
<input type="email" value="eMail" />
<input type="tel" value="Telefonnummer" /><br/>
<input type="date" value="Geburtstag" />
<select value="UIB"><br/>
<option>IB</option>
<option>IMB</option>
<option> UIB</option>
</select><br/>
<input type="submit"/>
</article>
</section>
<section id="content">
<article>
<figure>
<div class="icon icon-learn"></div>
</figure>
<h3><a href="https://github.com/WAWSS16/waw">Learn to Code</a></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><a href="https://github.com/WAWSS16/Organization">Get Superpowers</a></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><a href="https://help.github.com/articles/be-social/">Help Others</a></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: <a href="mailto:[email protected]">[email protected]</a>
</p>
</article>
</section>
</main>
<footer id="footer">
<img src="img/nodeschool.svg"></a>
</footer>
<script src="design/index.js"></script>
</body>
</html>