Skip to content
This repository was archived by the owner on Feb 1, 2025. It is now read-only.

Commit 64d5b54

Browse files
committed
New projects and updates, changed design, enhanced responsivity of some pages for mobile screens, and more.
1 parent fd184d6 commit 64d5b54

File tree

14 files changed

+1265
-9
lines changed

14 files changed

+1265
-9
lines changed

assets/images/terminal.png

1.15 KB
Loading

projects/id/P-009/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>RedFox Studios Console</title>
7+
<link rel="preconnect" href="https://fonts.googleapis.com">
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9+
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;900&display=swap" rel="stylesheet">
10+
<link rel="stylesheet" href="styles.css">
11+
<link rel="icon" type="image/png" href="../../../assets/images/terminal.png">
12+
</head>
13+
<body>
14+
<div id="console">
15+
<div id="output"></div>
16+
<div id="input-line">
17+
<span class="prompt">></span>
18+
<input type="text" id="input" autofocus autocomplete="off">
19+
</div>
20+
</div>
21+
<script src="scripts.js"></script>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)