-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaster.html
More file actions
51 lines (43 loc) · 1.45 KB
/
master.html
File metadata and controls
51 lines (43 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title>BetterPD</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<script type="text/javascript" src="js/main.js"></script>
</head>
<body>
<img src="img/title.png" alt="BetterPD" class="title" onclick="goHome()">
<div class="navbardiv">
<ul class="navbar">
<li>
<div id="interviewslink" class="dropdown">
<a href="interviews.html" class="navlink">Interviews</a>
<div class="dropdown-content">
<a id="interviews-formlink" href="interviews-form.html"> Quiz </a>
<a href="#">All Questions</a>
</div>
</div>
</li>
<li><a id="resumelink" href="resume-cover-letter.html" class="navlink">Resume/Cover Letter</a></li>
<li>
<div class="dropdown">
<a id="big5link" href="big-5.html" class="navlink">Big 5</a>
<div class="dropdown-content">
<a href="#Amazon">Amazon</a>
<a href="#Apple">Apple</a>
<a href="#Facebook">Facebook </a>
<a href="#Google">Google </a>
<a href="#Microsoft">Microsoft </a>
</div>
</div>
</li>
<li><a id="employerlink" href="employer-input.html" class="navlink">Employer Input</a></li>
<li><a id="aboutlink" href="about.html" class="navlink">About</a></li>
</ul>
</div>
<!-- CONTENT GOES HERE -->
<div class="footer">
<p>Footer Placeholder</p>
</div>
</body>
</html>