-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (64 loc) · 2.72 KB
/
index.html
File metadata and controls
76 lines (64 loc) · 2.72 KB
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
<!DOCTYPE html>
<html>
<head>
<title>ChatImproVR</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<header>
<div style="text-align: center;">
<img src = "assets/mikey.png" width="500">
<h1>ChatImproVR</h1>
</div>
</header>
<div class="menu-bar">
<ul class="menu-list">
<li><a href="#">Home</a></li>
<li><a href="https://chatimprovr.github.io/The-Book/" target="_blank">Docs</a></li>
<li><a href="https://github.com/ChatImproVR/chatimprovr" target="_blank">Download the Engine</a></li>
<li><a href="https://github.com/ChatImproVR" target="_blank">Find us on GitHub</a></li>
<li><a href="https://chatimprovr.github.io/The-Book/#where-can-i-find-help" target="_blank">Contact Us</a></li>
</ul>
</div>
<main>
<section>
<div class="carousel">
<img src="assets/fz_shot.JPG" alt="FZ screenshot">
<img src="assets/galaga_shot.JPG" alt="Galaga">
<img src="assets/fluid_sim_shot.JPG" alt="Fluid Simulation">
<a class="carousel-prev" onclick="prevSlide()">‹</a>
<a class="carousel-next" onclick="nextSlide()">›</a>
</div>
</section>
<div class="grid-container">
<section>
<h2>About</h2> <br>
<div>
<p>ChatImproVR is a <b>virtual world platform</b>: a game engine and a set of tools used
to create and experience an immersive virtual space, inside and out of VR. These virtual
spaces can be hosted online, where other users can join them to socialize and enjoy a variety of
activities in the virtual world.</p> <br>
<p>ChatImproVR improves on existing virtual world platforms by promoting open source software and
prioritizing user control over content. With ChatImproVR, the possibilities are endless!</p> <br>
<p>ChatImproVR is programmed in <b>Rust</b>.</p> <br>
</div>
</section>
<section>
<h2>Join Us</h2> <br>
<p>We are always looking for people to join the ChatImproVR community! If you want to contribute to engine
development, or even just want to use ChatImproVR with your own projects, <a href="https://github.com/ChatImproVR">
join our community on GitHub</a> today!
</p> <br>
<p>For those interested in <b>game development</b>, download the engine and get started with one of our plugin
tutorials.</p> <br>
<button id="documentationButton">Download</button>
<button id="theBookButton">Tutorial</button>
</section>
</div>
</main>
<footer>
<p>© 2023 ChatImproVR. All rights reserved.</p>
</footer>
</body>
<script src="script.js"></script>
</html>