-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1001 Bytes
/
index.html
File metadata and controls
26 lines (25 loc) · 1001 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet">
<title>Mercy</title>
</head>
<body>
<div id="titleContainer">
<div id="title"><a class="colorC">M</a>ercy</div>
<div id="line"></div>
<div id="sub">3128 Database Uplink</div>
</div>
<textarea id="input" placeholder="Raw input from scanner here"></textarea>
<button id = 'button'>Save and Upload</button>
<div id="status"></div>
<button onclick = "document.getElementById('input').value = ''" id="clear">Clear Input</button>
<script src="initapp.js"></script>
<script src="initfirefuncs.js"></script>
<script src="script.js"></script>
</body>
</html>