-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>One</title>
<link rel="stylesheet" href="Skeleton-2.0.4/css/normalize.css" />
<link rel="stylesheet" href="Skeleton-2.0.4/css/skeleton.css" />
<link
href="//fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<link rel="stylesheet" href="my.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="navigation.js"></script>
</head>
<body id="home">
<div class="container">
<div class="row">
<div class="column" style="margin-top: 2%">
<div class="nav-container">
<nav id="navigation"></nav>
</div>
</div>
</div>
<div class="row">
<div class="column" style="margin-top: 25%">
<h4>Basic Page</h4>
<p>
This index.html page is a placeholder with the CSS, font and
favicon. It's just waiting for you to add some content! If you need
some help hit up the
<a href="http://www.getskeleton.com">Skeleton documentation</a>.
</p>
</div>
</div>
</div>
</body>
</html>