-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (81 loc) · 3.62 KB
/
index.html
File metadata and controls
98 lines (81 loc) · 3.62 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
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
<!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/homepage.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>Refugee Website</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">
</div>
<div id="Menu_2" class="menu flex">
</div>
<div id="Menu_3" class="menu flex">
</div>
</div>
<!-- Profile -->
<div id="profile">
<div class="User-profile flex">
<div id="profilePic"></div>
</div>
<div class="heyPerson flex">
Hi, Guest!
</div>
</div>
</div>
<!--help question-->
<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>
<!--icon help-->
<div class="topRow">
<div class="clickForHelp">
<div id="helpIcon"></div>
</div>
</div>
<!-- main container-->
<div id="successPart">
<div class="congrats flex">
Welcome to Refugee Roadmap!
</div>
<div class="tree">
<div class="user flex">
<div>Our goal is to bridge your basic needs with career development</div>
</div>
</div>
<div class="takeQuizPart">
<div id="matchText" class="flex">Take the quiz to connect you with entry level jobs and mentorship.</div>
<div id="matchButton" class="flex">
<a href="./quiz_page1.html"><button id="matchButtonButton">Start quiz</button></a>
</div>
</div>
</div>
<script type="module" src="./app/help_script.js"></script>
</body>
</html>