-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
114 lines (114 loc) · 3.06 KB
/
about.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
108
109
110
111
112
113
114
<!--include attributions here-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Sahara Museum</title>
<meta
name="description"
content="A virtual reality educational tour of the sahara desert"
/>
<link rel="stylesheet" href="./css/index.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="assets/favicons/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="inner-nav">
<div class="logo"><a href="/sahara-museum">Sahara Museum</a></div>
<div>
<a href="/sahara-museum/about.html">About</a>
</div>
</div>
</div>
</nav>
<div class="container">
<div class="about-page">
<h1>About</h1>
<p>Sahara Museum is a demo project and a work in progress.</p>
<p>
The aim of the project is to use VR technology to create an
educational experience integrated into a navigable website.
</p>
<p>
Sahara Museum offers an interactive environment where users can learn
about the people, culture, history and geography of the Sahara Desert.
</p>
<p>
The project is built by Michael Tandy using the A-Frame VR library for
browsers.
</p>
<p>
Special thanks to the creators of the 3d models used. Attributions are
as follows:
</p>
<ul>
<li>
Cactus & Palm Tree -
<a
href="https://sketchfab.com/evolveduk"
target="_blank"
rel="noreferrer"
>evolveduk</a
>
</li>
<li>
Camel -
<a
href="https://sketchfab.com/omarme37"
target="_blank"
rel="noreferrer"
>omarme37</a
>
</li>
<li>
Coffins -
<a
href="https://sketchfab.com/hmane"
target="_blank"
rel="noreferrer"
>Harvard Museum of the Ancient Near East</a
>
</li>
<li>
Desert Winds -
<a
href="https://sketchfab.com/ItamarBN"
target="_blank"
rel="noreferrer"
>ItamarBN</a
>
</li>
<li>
Pyramid -
<a
href="https://sketchfab.com/MarloesB"
target="_blank"
rel="noreferrer"
>MarloesB</a
>
</li>
</ul>
</div>
</div>
</body>
</html>