-
Notifications
You must be signed in to change notification settings - Fork 0
/
three.html
35 lines (34 loc) · 1.01 KB
/
three.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Three</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="three">
<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>Three</h4>
</div>
</div>
</div>
</body>
</html>