-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (33 loc) · 1.12 KB
/
index.html
File metadata and controls
45 lines (33 loc) · 1.12 KB
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
---
---
<!doctype html>
<html>
<head>
<title> docloop </title>
<link href ="assets/styles/styles.css" type="text/css" rel = "stylesheet" />
<meta name ="viewport" content="width=device-width, minimum-scale = 1.0, initial-scale=1.0" />
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<script>
window.onload = function(){
var html = document.getElementsByTagName('html')[0]
window.onscroll = function(event){
window.scrollY > 150
? html.classList.add('scrolled')
: html.classList.remove('scrolled')
}
}
</script>
</head>
<body>
<header> {% include header.html %} </header>
<section class = "white"> {% include hero.html %} </section>
<section class = "white"> {% include claim.html %} </section>
<section class = "white"> {% include current_state.html %} </section>
<section class = "white"> {% include ideal_use_case.html %} </section>
<section class = "white split">
{% include features.html %}
{% include contact.html %}
</section>
<section class = "white"> {% include logos.html %} </section>
</body>
</html>