-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 1.16 KB
/
Copy pathindex.html
File metadata and controls
36 lines (34 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JavaScript Interface</title>
<script src="main.js" defer="defer"></script>
<link rel="stylesheet" href="theme.css">
</head>
<body>
<section id="background-wrapper">
<header>
<h1>Testing Ground</h1>
</header>
<main>
<form>
<fieldset>
<label for="txt-input">Write Something:</label>
<input type="text" id="txt-input">
<button type="button" id="btn-main">Main Output</button>
<button type="button" id="btn-confirm">Save Output</button>
<button type="button" id="btn-clear-all">Clear All</button>
</fieldset>
</form>
<div class="main-display-div">
<p></p>
</div>
<div id="container"></div>
</main>
<footer>
<p>Copyright Jones, Jones & Jones, 2050</p>
</footer>
</section>
</body>
</html>