-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindext.html
More file actions
55 lines (53 loc) · 1.33 KB
/
indext.html
File metadata and controls
55 lines (53 loc) · 1.33 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
54
55
<!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>
<article>
<h1>Hi my name is Ben Long and this is what I can do:</h1>
<!-- this is where something cool will go-->
<section>
<img src="" alt="">
<a href="#">Home</a>
<p>Born in Hummlestown, PA and graduated from Hershey high school...
I was exposed to programming for the first time in high school but had an attachment to it..</p>
</section>
<section>
<img src="" alt="">
<a href="personal.html">About Me</a>
<p>project descriptions</p>
</section>
<section>
<img src="" alt="">
<a href="intrest.html">Interests</a>
<p>project description</p>
</section>
<section>
<img src="" alt="">
<a href="projects.html">Projects</a>
<p>project description</p>
</section>
</article>
<nav>
<div>
<a href="#">Home</a>
<p></p>
</div>
<div>
<a href="personal.html">About Me</a>
<p>project discriptions</p>
</div>
<div>
<a href="intrest.html">Intrests</a>
<p>project discription</p>
</div>
<div>
<a href="projects.html">Projects</a>
<p>project discription</p>
</div>
</nav>
</body>
</html>