-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (47 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Explore tech roles</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main id="main">
<header>
<h1>Explore Tech Roles</h1>
</header>
<section class="container">
<section>
<p class="lead">Not sure what jobs to look for in tech?</p>
<p class="lead">
Tell us what you're interested in, then explore some common job
roles.
</p>
</section>
<nav class="buttons-menu">
<button id="coding-btn" class="btn" data-topic="codingJobs">I want to work in web development!</button>
<button id="creative-btn" class="btn" data-topic="creativeJobs">
I want to do something creative!
</button>
<button id="safety-btn" class="btn" data-topic="safetyJobs">
I want to keep things safe!
</button>
<button id="business-btn" class="btn" data-topic="businessJobs">
I'm interested in business!
</button>
<button id="data-btn" class="btn" data-topic="dataJobs">
I love data!
</button>
<button id="cloud-btn" class="btn" data-topic="cloudJobs">
My head is in the cloud
</button>
<button id="something-btn" class="btn" data-topic="otherJobs">Something else!</button>
</nav>
<section class="suggestions">
</section>
</section>
</main>
<script src="script.js"></script>
</body>
</html>