-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (35 loc) · 1010 Bytes
/
index.html
File metadata and controls
47 lines (35 loc) · 1010 Bytes
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">
<head>
<title>Jack's Website</title>
</head>
<body>
<h1>
<a class="name" href="index.html">Jack's Website</a>
</h1>
<nav class="Page">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h2>hello world!</h2>
<p class="discription">
Hello, my anme is <strong>Jackson</strong> and I am a <em>first year Compter Science student</em> from Santa Barbara, California
</p>
<img src="Pierre_bourne.jpg" alt="Pierre">
<div>
<h3>Personal Website</h3>
<p>
Description of project
</p>
<a href="blog.html"><strong>Learn More</strong> </a>
</div>
</main>
</div>
</body>
</html>