-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
67 lines (63 loc) · 2.32 KB
/
Copy pathmain.html
File metadata and controls
67 lines (63 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Careers</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="title_bar">
<div id="title_bar_headers">
<h1 class="title_text">Goldman Sachs</h1>
<h2 class="title_text">Careers</h2>
</div>
<div id="jump_to_offers">
<a href="./tmp.html"><button>Jump strait to unfiltered job offers</button></a>
</div>
</div>
<div id="quiz">
<h2>Match your experience to open roles</h2>
<form>
<h3>Programming languages</h3>
<table>
<tr>
<td><label for="python">Python</label></td>
<td><input type="checkbox" id="python" name="python"></td>
</tr>
<tr>
<td><label for="java">Java</label></td>
<td><input type="checkbox" id="java" name="java"></td>
</tr>
<tr>
<td><label for="c">C</label></td>
<td><input type="checkbox" id="c" name="c"></td>
</tr>
</table>
<h3>Foreign languages</h3>
<input type="text" name="language" id="language" placeholder="eg. English">
<input type="button" id="add_button" value="Add">
<ul id="languages_list"></ul>
<h3>Education</h3>
<table>
<tr>
<td><label for="uni_name">University name</label></td>
<td><input type="text" id="uni_name" name="uni_name"></td>
</tr>
<tr>
<td><label for="field_of_study">Field of study</label></td>
<td><input type="text" id="field_of_study" name="field_of_study"></td>
</tr>
<tr>
<td><label for="grad_date">Graduation date</label></td>
<td><input type="month" id="grad_date" name="grad_date"></td>
</tr>
</table>
<div id="submit">
<a href="./jobs/jobs.html"><input type="button" value="Submit" onclick="save_form()"></a>
</div>
</form>
</div>
<script src="languages.js"></script>
<script src="save_form.js"></script>
</body>
</html>