-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject2.html
More file actions
72 lines (63 loc) · 2.2 KB
/
project2.html
File metadata and controls
72 lines (63 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Description</title>
<link rel="stylesheet" href="styles.css">
</head>
<body class="project-page">
<a href="./index.html" class="back">
↪
</a>
<div class="project-page-container">
<header>
<h1>SPINE</h1>
</header>
<div class="project-about-container">
<section class="project-about-section">
<h2>About the Project</h2>
<p>A modular Multi Function Display (MFD) system for the game Starbase.</p>
<a href="https://github.com/Goodgui/StarbaseProjects/tree/main/SPINE" target="_blank" class="github-link">
View on GitHub
</a>
</section>
<section class="project-about-section project-image-section">
<img src="projectimage_spine_main.png" alt="Project Screenshot">
</section>
</div>
<section class="project-section">
<h3>Features</h3>
<ul>
<li>Modular design</li>
<li>In-game integration</li>
<li>Customizable displays</li>
</ul>
</section>
<section class="project-section">
<h3>Technologies Used</h3>
<div class="tech-chips">
<span class="tech-chip">YOLOL</span>
</div>
</section>
<!-- <section class="project-section">
<h3>Code Snippets</h3>
<div class="codeblock-container">
<pre class="codeblock">
<code class="codeblock-code">
// Example code snippet
function initSystem() {
console.log("System initialized");
}
</code>
</pre>
<a> - code snippet description </a>
</div>
</section> -->
<!-- <section class="project-section">
<h3> Additional Information</h3>
</section> -->
</div>
</body>
<script src="BackgroundPattern.js"></script>
</html>