-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid-flexbox.html
52 lines (52 loc) · 2.44 KB
/
grid-flexbox.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
<!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>CSS Grid Layout & Flexbox</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bree+Serif|Raleway" rel="stylesheet">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<div class="main-content">
<div class="card">
<i class="material-icons icn-ent">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 href="#" class="btn">Learn more</a>
</div>
<div class="card">
<i class="material-icons icn-arch">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 href="#" class="btn">Learn more</a>
</div>
<div class="card">
<i class="material-icons icn-edu">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 href="#" class="btn">Learn more</a>
</div>
<div class="card">
<i class="material-icons icn-sim">flight_takeoff</i>
<h1>Simulation & Training</h1>
<p>In simulation and training, you can safely train for dangerous situations or hazardous environments.</p>
<a href="#" class="btn">Learn more</a>
</div>
<div class="card">
<i class="material-icons icn-soc">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 href="#" class="btn">Learn more</a>
</div>
<div class="card">
<i class="material-icons icn-games">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 href="#" class="btn">Learn more</a>
</div>
</div>
</body>
</html>