-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz_page1.html
92 lines (85 loc) · 3.66 KB
/
quiz_page1.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
<!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="./styles/website_top_styles.css" />
<link rel="stylesheet" href="./styles/q1_styles.css" />
<link rel="stylesheet" href="./styles/help_styles.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap" rel="stylesheet">
<title>Question 1</title>
</head>
<body>
<div class="questionFrame">
<div id="top">
<!-- logo -->
<div class="webCompany">
<a href="./index.html"><div id="Company_namelogo"></div></a>
</div>
<!-- Navigation -->
<div id="navigationPane">
<div id="Menu_1" class="menu flex">
<!-- Navigation menu 1 -->
</div>
<div id="Menu_2" class="menu flex">
<!-- Navigation menu 2 -->
</div>
<div id="Menu_3" class="menu flex">
<!-- Navigation menu 3 -->
</div>
</div>
<!-- Profile -->
<div id="profile">
<div class="User-profile flex">
<div id="profilePic"></div>
</div>
<div class="heyPerson flex">
Hi, Lara!
</div>
</div>
</div>
<div class="questionPart">
<div id="infoOnQuiz" class="is--hidden">
<div class="helpPart">
<div id="help">
<div class="helpTop"><div id="exitHelpIcon"></div></div>
<div class="helpMid flex"><div id="helpTopText">How it Works</div></div>
<div class="helpBottom">
<div id="helpMainText">
1. You complete the Skills & Personality Quiz for Starter Job Matching. </br></br>
2. A recruiter reaches out to discuss a starter job in your chosen location. </br></br>
3. We connect you to a mentor at that company who supports your career development. </br></br>
4. You can meet with your mentor every week to discuss your career and skill development.
</div>
</div>
</div>
</div>
</div>
<div class="topRow">
<div class="actualQuestionPart flex">
<div id="questionText">Where do you want to find work?</div>
</div>
<div class="clickForHelp">
<div id="helpIcon"></div>
</div>
</div>
<div class="enterPart flex">
<input type="text">
</div>
<div class="locationPart flex"><a href="https://maps.google.co.uk/maps?hl=en">
<div id="locationButton">
<div id="locationText">Use my Location</div>
<div class="locationIconPostion flex"><div id="locationIcon"></div></div>
</div>
</a></div>
<div class="buttonPart">
<div class="enterButton flex">
<a href="./quiz_page2.html"><div class="enterText">Enter</div></a>
</div>
</div>
</div>
</div>
</body>
<script type="module" src="./app/help_script.js"></script>
</html>