-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapphelp.html
More file actions
70 lines (60 loc) · 2.88 KB
/
apphelp.html
File metadata and controls
70 lines (60 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" href="images/webverse-icon.png">
<title>WebVerse Terms & Privacy</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background: #0e1117;
color: #eee;
font-family: 'Segoe UI', sans-serif;
scroll-behavior: smooth;
}
h1, h2 {
color: #00c8ff;
}
a {
color: #00c8ff;
text-decoration: underline;
}
section {
max-width: 900px;
margin: auto;
padding: 2rem 1rem;
}
footer {
border-top: 1px solid #333;
padding: 2rem;
text-align: center;
font-size: 0.9rem;
}
</style>
</head>
<body>
<section class="text-center">
<h1 class="display-4 text-info"><a href="index.html"><img src="images/WVLogo.png" width="379" /></a></h1>
<p class="lead">Explore Worlds Like Websites.</p>
</section>
<section>
<h1>WebVerse Lite Troubleshooting</h1>
<p>This section is a work in progress. Ensure that WebGL support and hardware acceleration are enabled in your browser. The information below describes how to do this in common browsers. This site is particularly useful as well: <a href="https://get.webgl.org/webgl2/">https://get.webgl.org/webgl2/</a>. For further troubleshooting, please contact me at <a href="mailto:fivesquaredtechnologies@gmail.com">fivesquaredtechnologies@gmail.com</a>. Thank you for your patience.</p>
<h2>Firefox</h2>
<p>Enable WebGL by using the configuration editor: <a href="https://support.mozilla.org/en-US/kb/about-config-editor-firefox">https://support.mozilla.org/en-US/kb/about-config-editor-firefox</a>. Set webgl.disabled to false and webgl.force-enabled to true.</p>
<h2>Chrome</h2>
<p>Follow this guide for enabling WebGL in Chrome: <a href="https://www.interplaylearning.com/en/help/how-to-enable-webgl-in-chrome">https://www.interplaylearning.com/en/help/how-to-enable-webgl-in-chrome</a>.</p>
<h2>Edge</h2>
<p>In an Edge browser window, type edge://settings/system in the URL field. Ensure that "Use hardware acceleration when available" is checked. If you need to check it, be sure to restart your browser afterward so the change takes effect.</p>
<h2>Safari</h2>
<p>WebGL should be enabled by default on Safari.</p>
</section>
<!-- Footer -->
<footer>
<p>Built by independent creators. Powered by open tools.</p>
<p>© 2025 <a href="https://fivesqd.com">Five Squared Interactive</a>. All rights reserved. | <a href="https://github.com/Five-Squared-Interactive">GitHub</a> | <a href="https://github.com/Five-Squared-Interactive/WebWideWorlds/blob/main/docs/README.md">Docs</a> | <a href="privacypolicy.html">Privacy Policy</a> | <a href="termsofservice.html">Terms of Use</a></p>
</footer>
</body>
</html>