-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (50 loc) · 2.99 KB
/
index.html
File metadata and controls
60 lines (50 loc) · 2.99 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quark Engine</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Inter:wght@300;400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="background-cubes">
<div class="cube" style="left:10%;animation-delay:0s"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:30%;animation-delay:5s"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:60%;animation-delay:10s"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:80%;animation-delay:15s"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:5%;animation-delay:2s;--sz:30px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:20%;animation-delay:7s;--sz:50px;opacity:0.1"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:45%;animation-delay:3s;--sz:35px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:55%;animation-delay:12s;--sz:25px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:70%;animation-delay:8s;--sz:45px;opacity:0.15"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:90%;animation-delay:18s;--sz:30px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:15%;animation-delay:14s;--sz:40px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
<div class="cube" style="left:85%;animation-delay:4s;--sz:20px"><div></div><div></div><div></div><div></div><div></div><div></div></div>
</div>
<nav>
<div class="logo-wrap">
<div class="logo">QUARK</div>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="https://quark-engine.gitbook.io/quark-engine-docs/" target="_blank">Documentation</a></li>
<li><a href="https://github.com/Quark-Engine/QuarkEngine/actions" target="_blank">Download</a></li>
<li><a href="https://github.com/Quark-Engine/QuarkEngine" target="_blank">GitHub</a></li>
</ul>
</nav>
<section class="hero">
<div class="title">
<h1>Quark Engine</h1>
<p>A modern 3D engine with a scene editor, component system, and full customization freedom.</p>
<div class="buttons">
<a href="get-started.html" class="btn">Get Started</a>
<a href="docs.html" class="btn">Documentation</a>
</div>
</div>
<div class="engine-preview">
<img src="engine_screen.png" alt="Engine Screenshot">
</div>
</section>
</body>
</html>