-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
47 lines (47 loc) · 1.52 KB
/
skills.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
<!DOCTYPE html>
<html lang="en-us">
<meta charset="UTF-8">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<title>Career Pathways</title>
</head>
<body>
<div class="title">
<h2>Take our Career Pathways Quiz</h2>
</div>
<div class="outer-box">
<div class="content-box">
<h2>You might be a great front-end developer!</h2>
<div class="text">
<p>Front End Developers are computer programmers who specialize in website design. Front End Developers are
always
learning new technologies.
</p>
</div>
<div class="container">
<div class="row">
<div class="col">
<ul id="hard-skills">
<h3>Hard Skills</h3>
</ul>
</div>
<div class="col">
<ul id="soft-skills">
<h3>Soft Skills</h3>
</ul>
</div>
</div>
</div>
<div class="skills">
<img src="/images/skillsimage.jpg" class="skills">
</div>
<div>
<button class="button" id="button"><a href="learning.html">Learning Resources</a></button>
</div>
</div>
</div>
<script src='skills.js'></script>
</body>
</html>