-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Myriad+Pro:wght@700&family=Myriad+Pro+Condensed:wght@700&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Bahnschrift:wght@300&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Bahnschrift:wght@700&display=swap">
</head>
</head>
<body>
<div class="panel">
<img id="compass_img" src="eng_logga_med_bakgrund.png" alt="Här ska va en bild :)" width="400" height="200"/>
<h1 class="ques" id="choose_language">Please select your prefeered language</h1>
<button onclick="language_selector_swedish()" id="swedish">Svenska</button>
<button onclick="language_selector_english()" id="english">English</button>
<div class="centered_question">
<div class="question" id="ques1"></div>
<div class="question separator" id="separator"></div>
<div class="question" id="ques2"></div>
</div>
<div class="options" id="opt"></div>
<button onclick="check_answer()" id="btn">SUBMIT</button>
<div class="role" id="welcome"></div>
<div class="role" id="role_1"></div>
<div class="description" id="description_1"></div>
<div class="role" id="role_2"></div>
<div class="description" id="description_2"></div>
<div class="role" id="role_3"></div>
<div class="description" id="description_3"></div>
<script src="script.js"></script>
</div>
</body>
</html>