-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (59 loc) · 2.17 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eduflix</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="navbar">
<div class="logo">
<img src="logos.jpeg" width="150px" height="80px">
</div>
<nav>
<ul id="menu-items">
<li><a href="main.html">Home</a></li>
<li><a href="about.html">Categories</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="help.html">Help Desk</a></li>
<button class="loginbtn" onclick="document.getElementById('login-form').style.display='block'" style="width: auto;">Login
</button>
</ul>
</nav>
</div>
<main>
<div class="container">
<form id="careerForm">
<label for="subject">Choose your subject:</label>
<br>
<select id="subject" required>
<option value="Economics">Economics</option>
<option value="Accounts">Accounts</option>
<option value="Business Studies">Business Studies</option>
</select>
<br>
<button type="submit">Get Career Information</button>
</form>
</div>
<div id="result"></div>
</main>
<div class="end">
<p>Binge search your career options with us!</p>
</div>
<footer>
</div class="footer">
<nav>
<ul id="menu-items">
<li><a href="main.html">Home</a></li>
<li><a href="feed.html">Feedback</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="terms.html">Terms and Conditions</a></li>
<li><a href="help.html">Help </a></li>
</ul>
</nav>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>