-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRefresh-Template.html
More file actions
91 lines (83 loc) · 2.6 KB
/
Refresh-Template.html
File metadata and controls
91 lines (83 loc) · 2.6 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Guide Layout</title>
<link rel="stylesheet" href="refresh.css" />
</head>
<body>
<!-- Top Navbar -->
<header class="navbar">
<div class="navbar-left">
<img src="meow.png" alt="Logo" class="logo-img" />
<h1 class="logo">Echo VR Installation Guide</h1>
</div>
<nav class="navbar-right">
<ul>
<li><a href="#">FAQ</a></li>
<li><a href="#">Troubleshooting</a></li>
<li><a href="#">Extras</a></li>
<!--<li><a href="#">🌐</a></li>
<li><a href="#">🌙</a></li>
<li><a href="#">💬</a></li>
<li><a href="#">🐙</a></li>-->
</ul>
</nav>
</header>
<div class="container">
<!-- Sidebar -->
<aside class="sidebar">
<h2>Guide Navigation</h2>
<nav>
<ul>
<li class="section">Introduction</li>
<li><a href="/">Overview</a></li>
<li><a href="preperations.html">Preperations</a></li>
<li class="section">Installation</li>
<li><a href="installtheinstaller.html">Installing the installer</a></li>
<li><a href="#">Using the installer</a></li>
<li><a href="#">Launching Echo</a></li>
<li class="section">Echo itself</li>
<li><a href="#">First time Launching</a></li>
<li><a href="#">Linking your account/a></li>
<li class="section">Extras</li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Troubleshooting</a></li>
</ul>
</nav>
</aside>
<!-- Main Content -->
<main class="content">
<h1>Overview</h1>
<p>
This guide provides step-by-step instructions on how to install Echo VR on your headset.
</p>
<section>
<h2>What do I need?</h2>
<p>
You'll need:
Meta Quest 2/3/3s<br>
A Discord Account<br>
A Brain - Optional, but reccommended
</p>
</section>
<section>
<h2>General tips</h2>
<p>General tips for installation are:</p>
<ul>
<li>DO NOT PRESS RESTORE.</li>
<li>Get used to the tools.</li>
<li>Expect issues during the install.</li>
<li>Read the instructions carefully.</li>
</ul>
</section>
<section>
<h2>Next Steps</h2>
<p>Continue to the next section to see the next steps on installing.</p>
<button class="A" onclick="document.location='/'">Preperations</button>
</section>
</main>
</div>
</body>
</html>