-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (104 loc) · 4.65 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
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Page Meta -->
<meta charset="utf-8">
<title>firstSite</title>
<meta name="description" content="firstSite" />
<meta name="author" content="Ivan von Christ" />
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700%7COpen+Sans:300,400,500,600,700%7CRaleway:300,400,500,600,700">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header class="flex">
<div id="hero-text">
<h1>VREALMS</h1>
<p>Mind-blowing, immersive VR experiences for everyone.</p>
<span class="more"><a href="#">Check out our work</a></span>
</div>
<nav>
<ul>
<li><a id="active" href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="flex boxes">
<div class="flex col-20 m1">
</div>
<div class="flex col-40 brr b1">
<h1>Let's create a new world</h1>
<p>From vibrant, playful fantasy worlds to real-life flight simulation, we can do it all. What's your world?</p>
</div>
</section>
<section class="flex boxes">
<div class="flex col-40 blr b2">
<h1>Next-level interactivity</h1>
<p>Virtual reality provides interaction on an entire new level. With state-of-the-art motion controllers, you can engage directly with a digital world.
<br>
<a href="#">Find out more about our process</a></p>
</div>
<div class="flex col-20 m2">
</div>
</section>
<section class="flex boxes">
<div class="flex col-20 m3">
</div>
<div class="flex col-40 brr b3">
<h1>Custom VR experiences for your business</h1>
<p>We work with our clients to provide sublime VR solutions, keeping costs as low and afforable as possible.
<br>
<a href="#">See our pricing models</a></p>
</div>
</section>
<section class="flex">
<div class="flex col-25 p1">
<p>Fantasy Worlds</p>
</div>
<div class="flex col-25 p2">
<p>Building Simulation</p>
</div>
<div class="flex col-25 p3">
<p>Training Program</p>
</div>
<div class="flex col-25 p4">
<p>Flight Experience</p>
</div>
</section>
<section class="flex">
<div class="col-100 hello">
<h1>Get in touch with us!</h1>
<p>Are you looking for a custom, tailor-made VR solution for your business? We're always keen to take on new projects!</p>
<form>
<input aria-label="Your E-mail Address" type="text" name="email" placeholder="Your e-mail address..." onfocus="this.placeholder =''" onblur="this.placeholder = 'Your e-mail address...'">
<textarea aria-label="Your Project Details" placeholder="Tell us about your project..." onfocus="this.placeholder =''" onblur="this.placeholder = 'Tell us about your project...'"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</section>
<footer>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact Us</a>
<br>
<p>
© VREALMS, 2019. All rights reserved.
<br>
<a href="mailto:"><i aria-label="Send an e-mail" class="fas fa-envelope"></i></a>
<a href="https://www.facebook.com"><i aria-label="Go to our Facebook page" class="fab fa-facebook"></i></a>
<a href="https://www.instagram.com"><i aria-label="Go to our Instagram page" class="fab fa-instagram"></i></a>
<br>
</p>
</footer>
</div>
</body>
</html>