-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<div class="header">
<h1 class="Err">418</h1>
<p class="error">Random Number: <span id="randomVal"></span></p><br>
<a href="success.html">Enter Information</a><br>
<button class="crash" onclick="alert('Preparing to crash System')" ><a href="crashtest.html">DO NOT CLICK</a></button>
</div>
<div class="canvas">
<p>Test Canvas</p>
<canvas id="canvas001" width="500px" height="500px" style="border: 2px solid #000000; "> </canvas>
</div>
<div class="format">
<p>
<b>Bold</b><br>
<i>Italic</i><br>
<u>Underline</u><br>
Letter<sup>Superscript</sup><br>
Letter<sub>Subscript</sub><br>
</p>
</div>
</body>
</html>