-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (49 loc) · 2.01 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R62BD9C6RS"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R62BD9C6RS');
</script>
<meta property="og:title" content="Weapon Blueprint Generator">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bijx.github.io/Weapon-Blueprint-Generator/">
<meta property="og:image" content="https://bijx.github.io/Weapon-Blueprint-Generator/image.jpg">
<meta property="og:description" content="Generate unique weapon blueprints. Explore different camo patterns and get your favorite design.">
<meta property="og:site_name" content="Weapon Blueprint Generator">
<script src="https://threejs.org/build/three.js"></script>
<script src="https://raw.githubusercontent.com/mrdoob/three.js/d3c862f4eecff63e94b590d26aafaa00efb1237b/examples/jsm/controls/OrbitControls.js"></script>
<meta charset="UTF-8">
<title>Weapon Blueprint Generator</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="fav.png">
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/"
}
}
</script>
</head>
<body>
<div class="info-box">
<div class="weapon-title">Weapon Name</div>
<div class="weapon-class">Class Name</div>
<div class="weapon-desc">Weapon Description</div>
<a href="#" id="downloadButton">
<button id="download-button">Download Camo Pattern</button>
</a>
</div>
<div id="scene"></div>
<button id="generate">Generate</button>
<footer>
© H Y P E R S P C
</footer>
<script type="module" src="scripts.js"></script>
</body>
</html>