-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (23 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terminal</title>
<link rel="stylesheet" href="./style.css" />
<link rel="icon" type="image/svg+xml" href="data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --%3E%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg' version='1.1' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Crect height='10.5' width='12.5' y='2.75' x='1.75'/%3E%3Cpath d='m8.75 10.25h2.5m-6.5-4.5 2.5 2.25-2.5 2.25'/%3E%3C/svg%3E" />
</head>
<body>
<div id="terminal">
<p id="before"></p>
</div>
<div id="commandLine">
<p id="prefix"></p>
<p id="message"></p>
<div id="textAnimation"></div>
</div>
<script src="commands.js"></script>
<script src="js.js"></script>
<script src="./terminalGames/tictactoe.js"></script>
</body>
</html>