-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (71 loc) · 3.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Experience VR</title>
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Raleway" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header>
<div class="inner">
<ul class="main-nav">
<li><a href="#">About</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Contact</a></li>
</ul>
<h1>Experience VR</h1>
<p>A simple blog about virtual reality experiences</p>
<img class="img-featured" src="img/featured.jpg" alt="VR headset">
</div>
</header>
<div class="intro">
<p> Virtual Reality is becoming well known as a form of entertainment, but it's also finding its way into fields like architecture, industrial design, healthcare, and so much more!</p>
<a class="btn btn-callout" href="https://teamtreehouse.com/vr">Start Your VR Journey</a>
</div>
<div class="main-content">
<div class="card">
<i class="material-icons icon">videocam</i>
<h1>Entertainment</h1>
<p>Hundreds of VR games and films have been released already. <a href="#">Oculus Story Studio</a> is one example of a company producing VR films.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
<div class="card">
<i class="material-icons icon">account_balance</i>
<h1>Architectural Visualization</h1>
<p>These experiences allow you to explore and interact with buildings and products in virtual reality. <a href="#">IKEA VR</a> is a popular example.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
<div class="card">
<i class="material-icons icon">school</i>
<h1>Education</h1>
<p>VR allows students to visit other places and other times. For instance, the BBC produced a <a href="#">360° video</a> that allows users to see the scale of dinosaurs in stereoscopic 3D.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
<div class="card">
<i class="material-icons icon">flight_takeoff</i>
<h1>Simulation & Training </h1>
<p>In simulation and training, you can safely train for dangerous situations or hazardous environments.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
<div class="card">
<i class="material-icons icon">people</i>
<h1>Social Networking</h1>
<p>VR is finding its way into teleconferencing and social media. At the <a href="#">ethic conference in 2016</a>, Facebook demonstrated what it might look like in VR.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
<div class="card">
<i class="material-icons icon">videogame_asset</i>
<h1>Games</h1>
<p>VR games let users experience a 3D environment, creating suspension of disbelief, which makes users experience the environment as real.</p>
<a class="btn btn-info" href="#">Learn more</a>
</div>
</div>
<footer>
<span>©2017 Experience VR, The Blog</span>
</footer>
</body>
</html>