-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
33 lines (33 loc) · 1013 Bytes
/
about.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="Style.css">
<title>about brian</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script>
$(document).ready(function() {
$('div.hidden').fadeIn(200).removeClass('hidden');
});
</script>
</head>
<body>
<meta name="viewport" content="width=device-width, initial-scale=1">
<div class="border-container">
<div class="hidden">
<div class="nav">
<a href="/">
<div class="back">< back</div>
</a>
</div>
<div class="about">
<div>Howdy</div>
<div>I am a software engineer living in Brooklyn.</div>
</div>
</div>
</div>
</body>
</html>