-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (34 loc) · 1.44 KB
/
index.html
File metadata and controls
37 lines (34 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Varnsen Learning</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
.btn-primary {
background-color: #f4b14a;
border-color: #f4b14a;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:not(:disabled):not(.disabled):active {
background-color: #f95157;
border-color: #f95157;
}
html {
scroll-behavior: smooth;
}
</style>
</head>
<body>
<div class="container-fluid d-flex vh-100 align-items-center justify-content-center">
<div class="jumbotron bg-white d-flex flex-column justify-content-center">
<img src="varnsen.png" class="mb-5" style="width:300px" />
<a class="btn btn-primary btn-lg" href="/#form" role="button">Learn More</a>
</div>
</div>
<div class="container-fluid d-flex align-items-center justify-content-center" id='form'>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSeGf4XnDdYKSfpsxrLaXjlQzdgS-0C1wSL0GICdyYwfVXdlgQ/viewform?embedded=true" width="640" height="931" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
</div>
</body>
</html>