-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (51 loc) · 1.7 KB
/
index.html
File metadata and controls
59 lines (51 loc) · 1.7 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Application Design // Prototyp</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" content="HfG, Hochschule für Gestaltung, Schwäbisch Gmünd, Studenten, Tutorien, Von Studenten für Studenten">
<meta name="language" content="German">
<meta http-equiv="content-type" content="text/html; charset=UTF-8;">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="js/fastclick.js"></script>
<script src="js/jquery.easing.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/basic.js"></script>
<script>
document.createElement('header');
document.createElement('footer');
document.createElement('section');
document.createElement('aside');
document.createElement('nav');
document.createElement('article');
</script>
</head>
<body>
<header>
<div class="center">
<div class="logo">FileShare</div>
<div class="nameSettings">Nikolas Klein</div>
</div>
</header>
<article>
<section class="courseWrapper">
<div class="course"></div>
<h2>Invention Design</h2>
</section>
<section class="courseWrapper">
<div class="course"></div>
<h2>Application Design</h2>
</section>
<section class="courseWrapper">
<div class="course"></div>
<h2>Design- und Mediengeschichte</h2>
</section>
<section class="courseWrapper">
<div class="course"></div>
<h2>Designtheorie</h2>
</section>
</article>
</body>
</html>