-
Notifications
You must be signed in to change notification settings - Fork 0
/
skills.html
46 lines (46 loc) · 1.36 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
<!DOCTYPE html>
<html>
<head>
<title>Skills</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<nav>
<div id="home">
<div class="profile_name">
Ben Murray
</div>
<div class="nav-div">
<a class="topmenu" href="index.html">About</a>
<a class="topmenu" href="skills.html">Skills</a>
<a class="topmenu" href="contact.html">Contact</a>
</div>
</div>
</nav>
<section id="skills">
<h2>Tech Skills</h2>
<table>
<tr>
<th>Name</th>
<th>Years experience</th>
</tr>
<tr>
<td>.Net</td>
<td>5.5</td>
</tr>
<tr>
<td>Java</td>
<td>2</td>
</tr>
<tr>
<td>Vagrant</td>
<td>2</td>
</tr>
<tr>
<td>Jenkins</td>
<td>5.5</td>
</tr>
</table>
</section>
</body>
</html>