-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 1.64 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bit Dot Night</title>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="code/style.css">
</head>
<body>
<header class="header-container">
<div class="top-nav-buttons">
<a href="https://github.com/dkconnect/bit-dot-night" target="_blank" rel="noopener noreferrer" class="icon-button" title="GitHub Repository">
<i class="fab fa-github"></i>
</a>
<a href="Bit Dot Night Rev - JULY.pdf" target="_blank" class="icon-button" title="Research Paper">
<i class="fas fa-book"></i>
</a>
</div>
<h1>Bit Dot Night</h1>
<div class="spacer"></div>
</header>
<main class="main-content">
<div class="canvas-wrapper">
<canvas id="pixelArtCanvas"></canvas>
</div>
<div class="action-buttons">
<button id="downloadBtn" class="action-icon-button" title="Download Image">
<i class="fas fa-download"></i>
</button>
<button id="generateBtn" class="action-icon-button" title="Generate New">
<i class="fas fa-redo-alt"></i>
</button>
</div>
</main>
<footer class="footer-text">
COPYRIGHT | 2026 | DIBYANSHU
</footer>
<script src="code/script.js"></script>
</body>
</html>