-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
30 lines (23 loc) · 903 Bytes
/
about.html
File metadata and controls
30 lines (23 loc) · 903 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<link href="css/style.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Poiret+One|Exo:400,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" type="image/x-icon" href="img/icon.ico" />
<title>About Me</title>
</head>
<body>
<div class='nav'>
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
</div>
<div class='wrapper'>
<h1>Samantha</h1>
<img id='mepic' src='img/sam.jpg'>
<p>Hi. I have elbow tendonitis and I don't like it.</p>
</div>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src='main2.js'></script>
</body>
</html>