-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (94 loc) · 4.95 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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<title>Level Up German</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="levelupgerman.css">
<link rel="icon" type="image/x-icon" href="" />
<!-- The below link is to the Bootstrap 3.3.5 default CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Bootstrap 3.3.5 core JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Oswald&family=Lora&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
</head>
<body id="wrapper">
<header>
</header>
<nav class="navbar navbar-default" id="navbar-override">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Level Up German</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="placementtest.html">Placement Test</a></li>
<li><a href="levels.html">Levels</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<!--/.nav-collapse -->
</div>
<!--/.container-fluid -->
</nav>
<main>
<div id="top-grid">
<div id="hero">
<img class="desktop-off" src="assets/cafe_1000x320.jpg" alt="German Cafe">
<img class="desktop-on" src="assets/cafe_439x190.jpg" alt="German Cafe">
</div>
<div id="main-text">
<h1>Are you ready to learn German?</h1>
<p>Learning a language doesn't have to mean sitting with a book, conjugation tables, and flash cards. It is a much more natural process than this. We are born with an innate need to communicate. Everything you need to
learn a language, you already have. You just need to be put into situations where communication is required.
At level up German, we share examples of real world German and add a pair of training wheels. </p>
</div>
</div>
<div id="feature">
<div id="text-one">
<h2> Take a Placement Test!</h2>
<p>Start here if you want to find out your current level of German and where we recommend you continue or start
your journey.</p>
<div class="button-container" class="desktop-off">
<button id="test-yourself-button" type="submit" onclick="location.href='placementtest.html';">Test yourself!</button>
</div>
</div>
<div id="img-one" class="desktop-off"><img src="assets/laedle_550x297.jpg" alt="# German" /></div>
<div id="text-two" class="desktop-off">
<h2>Already Know Your Level?</h2>
<p>We base our content off of the <a href="">Common European Framework of References</a> (CEFR).</p>
<div class="button-container" class="desktop-off">
<button class="get-started-button" type="submit" onclick="location.href='levels.html';">Get started</button>
</div>
</div>
<div id="image-two" class="desktop-off"><img src="assets/klasse_550x305.jpg" alt="Students in class"></div>
<div id="level-box" class="desktop-on">
<h2>Levels</h2>
<ul id="levellist">
<li><a href="levels.html#text-one">A1</a></li>
<li><a href="levels.html#text-two">A2</a></li>
<li><a href="levels.html#text-three">B1</a></li>
<li><a href="levels.html#text-four">B2</a></li>
<li><a href="levels.html#text-five">C1</a></li>
</ul>
</div>
<div id="image-three" class="desktop-on"><img src="assets/fest_330x330.jpg" alt="Small German town square"></div>
</div>
</main>
<footer>
<p>Level Up German ©2020</p>
<p>Designed and Developed by Deana Jackson</p>
</footer>
</body>
</html>