-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path003.html
39 lines (32 loc) · 1.21 KB
/
003.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
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<header>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Day 3 | Landing Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="css/003.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<script src="https://use.fontawesome.com/63f4c123c8.js"></script>
</header>
<body>
<div class="container">
<header class="text-center">
<div class="col-md-12">
<h1>Day 3: Landing Page</h1>
<a href="index.html">return to main page</a>
</div>
</header>
</div>
<br>
<div id="main" class="is-loading">
<h1>Portfolio</h1>
</div>
<section>
<a href="#" class="about">ABOUT</a>
<a href="#" class="experience">EXPERIENCE</a>
<a href="#" class="contact">CONTACT</a>
</section>
<script src="js/003.js"></script>
</body>
</html>