-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
50 lines (43 loc) · 1.58 KB
/
Copy pathabout.html
File metadata and controls
50 lines (43 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel='shortcut icon' type='image/x-icon' href='/favicon.ico' />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<ul class="nav-center nav navbar-nav">
<li>
<a href="portfolio.html">portfolio</a>
</li>
<li>
<a href="index.html">home</a>
</li>
<li>
<a href="about.html">about</a>
</li>
</ul>
</div>
</nav>
<main>
<div class="text-center">
<img src="media/IMG_1142.jpg" class="img-responsive rounded img-circle" alt="me">
</div>
<h1>hi my name is sam</h1>
<h1>here is my
<a href="media/Heckle_Resume.pdf" type="application/pdf">resume</a>
</h1>
</main>
</body>
</html>