-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
59 lines (56 loc) · 2.32 KB
/
services.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
<!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 blank small">
<div id="hero-text">
<h1>WHAT WE DO</h1>
<p>Engagement. Immersion. Results.</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a id="active" 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-60 brr b1">
<h1>You got an idea? We got the goods</h1>
<p>From vibrant, playful fantasy worlds to real-life flight simulation, we can do it all. What's your world?</p>
</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>