-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 1.24 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 1.24 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
52
53
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Home</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<div class="dlogo">
<span class="logo">B</span>
<span class="under">Ben</span>
</div>
<ul>
<li>
<div class="icon">
<img src="images/home.png" alt="home icon">
</div>
<a href="#">Home</a>
</li>
<li>
<div class="icon">
<img src="images/user.png" alt="personal icon">
</div>
<a href="personal.html">About Me</a>
</li>
<li>
<div class="icon">
<img src="images/social.png" alt="skill icon">
</div>
<a href="skills.html">Skills</a>
</li>
<li>
<div class="icon">
<img src="images/start-up.png" alt="">
</div>
<a href="projects.html">Projects</a>
</li>
<li class="copy">
<a href="credit.html">©</a>
<a href="credit.html">Credit</a>
</li>
<!--© is option g--->
</ul>
</nav>
<article class="home">
<h1>Hi, my name is Ben Long</h1>
<h2>Welcome</h2>
<!-- this is where something cool will go-->
</article>
</body>
</html>