-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
77 lines (59 loc) · 2.51 KB
/
index.php
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
<?php
// INCLUDE ON EVERY TOP-LEVEL PAGE!
include("includes/init.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat:600i&display=swap" rel="stylesheet">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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" type="text/css" href="styles/all.css" media="all" />
<script src= "javascript.js" ></script>
<title>VR Voyager!</title>
<script>var caption = document.querySelector("#gallery figcaption"),
thumbs = document.getElementById("thumbs"),
fullsize = document.getElementById("fullsize");
thumbs.addEventListener("click", function(e) {
var filename = e.target.src.split("/").pop();
var fileNameArr = filename.split(".");
fullsize.src = fileNameArr[0]+"-full."+fileNameArr[1];
fullsize.srcset = fileNameArr[0]+"-2x-full."+fileNameArr[1]+" 2x";
caption.innerHTML = e.target.dataset.caption;
fullsize.alt = e.target.alt;
})</script>
</head>
<body>
<div class = "container">
<?php include("includes/header.php"); ?>
</div>
<div class="container">
<div class="second">
<img src = "images/bones.png" class="center2"></img>
</div>
<div class="row space">
<div class="col">
<h2>Empathy</h2>
<p>Our educational environments address diverse learning preferences that feature integrated and thematic curriculum.</p>
</div>
<div class="col">
<h2>Engagement</h2>
<p>Our educational environments address diverse learning preferences that feature integrated and thematic curriculum.
Studies show that VR enhances engagement and improves retention. By providing an immersive, focused experience, students
learn material in ways that can’t be conveyed by just a picture line of text.
</p>
</div>
<div class="col">
<h2>Accessibility</h2>
<p>VR allows students to go places and see things virtually without actually having to go there.
This makes our model particularly helpful for students to have a chance to walk at their own pace, using as much time as they want to take everything in. </p>
</div>
</div>
</div>
</body>
<footer>
<?php include("includes/footer.php"); ?>
</footer>
</html>