-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (94 loc) · 5.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!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">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<head>
<!-- Navigation bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<!--Butopea logo taken from the website-->
<a class="navbar-brand" href="#"><img src="https://butopea.com/image/catalog/logo/butopea_circle.png" alt="Butopêa HU" height="40px" width="40px" style="height: 40px;width: 40px;"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse float-right" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#Signup">Become a tester</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#Details">Details</a>
</li>
</ul>
</div>
</nav>
<body>
<header id="Signup">
<!-- Email part -->
<form action="" id="post-data" class="justify-content-center col">
<div class="container form-group text-white text-center">
<div class="form-group">
<h1 class="title text-center"> <strong>New Virtual Software</strong> </br> Design Your Room </br> Your Own Way</h1>
</div>
<div>
<input type="email" id="email" class="form-control form-group form-control-lg text-center" placeholder="Enter your email...">
</div>
<div>
<button type="submit" class="btn btn-lg btn-primary form-group">Become a tester</button>
</div>
</div>
</form>
<div class="overlay">
<video playsinline="playsinline" autoplay="autoplay" muted="muted" loop="loop">
<source src="media/vr.mp4" type="video/mp4">
</video>
</div>
</header>
<!-- Expectations part(divided with the help of columns) -->
<section id="Details" class="page-section m-5" id="services">
<div class="container text-dark">
<h2 class="text-center mt-0">What to expect</h2>
<hr class="divider ">
<div class="container">
<div class="row text-center">
<div class="col-md-4">
<span class="fa-stack fa-6x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="fa fa-pencil-ruler fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">New way of design</h4>
<p class="text-muted">We will show you how to design your room in a new ways</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-6x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="fa fa-building fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Better Design</h4>
<p class="text-muted"> With the help of VR your room will look like no other room</p>
</div>
<div class="col-md-4">
<span class="fa-stack fa-6x">
<i class="fa fa-square fa-stack-2x text-primary"></i>
<i class="fa fa-star fa-stack-1x fa-inverse"></i>
</span>
<h4 class="service-heading">Be first to try it!</h4>
<p class="text-muted">This is not available anywere else</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
<!-- Javascript libraries and frameworks -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/b4b26d4271.js"></script>
<script src="main.js"></script>
</html>