-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (77 loc) · 3.63 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html> <!-- Tells the Browser that this document is an html document -->
<html lang="en"> <!-- Tells the Browser that this document's primary language is english -->
<head> <!-- All the stuff you don't see that sets up the webpage -->
<meta charset="utf-8"> <!-- Which set of keyboard characters to use -->
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- Makes it work with old microsoft edge -->
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Content should be the same width as the viewport (the size of the window you're viewing it on) -->
<!--Fonts-->
<!-- I will show you how to import these from google -->
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<title>Chadwick Savage</title> <!-- This is what shows up in the tab up top -->
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Wrapper -->
<div class="container">
<!-- Navigation -->
<div class="nav-menu" name="top">
<nav role="navigation">
<ul>
<li><a href="index.html" data-content="Change this Text to Describe Home">Home</a></li>
<li><a href="pages/about.html" data-content="This can be a quote, funny saying, short description, etc">About</a></li>
<li><a href="pages/blog.html" data-content="Tell your story through a blog if you wish, blog about the career you want or whatever your passion is">Blog</a></li>
<li><a href="pages/work.html" data-content="You can share your resume or something here">My Work</a></li>
<li><a href="pages/contact.html" data-content="contact information or short catchy phrase like press 1 now to speak to me">Contact</a></li>
</ul>
</nav>
</div>
<!-- Hamburger Menu -->
<section class="nav-wrap">
<div class="triple_lines">
<span class="bar-top"></span>
<span class="bar-middle"></span>
<span class="bar-bottom"></span>
</div>
</section>
<!-- Back to Top Arrow -->
<div class="back2top">
<a href="https://www.instagram.com/" class="white"><i class="fa fa-instagram fa-2x"></i></a>
</div>
<!-- Home Info -->
<div class="row feature">
<div class="col-xs-6"></div>
<div class="col-xs-6"></div>
</div>
<!--Close Wrapper-->
</div>
<!-- Scripts add interactivity to our website -->
<!-- JQuery -->
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<!-- Bootstrap Javascript -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous">
</script>
<!-- Velocity.js -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.3/velocity.min.js">
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/velocity/1.2.3/velocity.ui.min.js">
</script>
<!-- Custom JavaScript -->
<script
src="js/main.js">
</script>
</body>
</html>