-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·62 lines (53 loc) · 2.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Smooth Scroll</title>
<link rel="apple-touch-icon" sizes="57x57" href="images/icons/apple-icon-57x57.png">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="images/icons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="author" content="The Experiment">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, minimal-ui">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<link rel="shortcut icon" type="image/x-icon" href="images/icons/favicon.ico">
<!--Scripts-->
<!-- remove:production -->
<script src="//localhost:8080"></script>
<!-- endremove -->
<!--Styles-->
<link href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.min.css"/>
<link rel="stylesheet" type="text/css" href="css/props-2.css"/>
<link rel="stylesheet" type="text/css" href="css/colors.css"/>
</head>
<body class="bg-white ov-x-h">
<header class="nav pos-f h-3rem w-100p bg-softblack z-20 t-0">
<div class="p-l-2">
<h1></h1>
</div>
<div class="nav-btn center-h ms-center-v pos-a r-0">
<a class="bg-softblack f-s-xxs" href="#">
<div class="top-btn t-a-c ms-m-r-2 fg-white">
</div>
</a>
</div>
</header>
<section>
<div class="docScroller">
<div class="page one bg-charcol">
<div>Idea One</div>
</div>
<div class="page two bg-whitesmoke">
</div>
<div class="page three bg-white">
</div>
</div>
</section>
<!--Application-->
<script type="text/javascript" src="js/script.js?v=1.1231" defer></script>
</body>
</html>