-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (24 loc) · 932 Bytes
/
index.html
File metadata and controls
25 lines (24 loc) · 932 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- Connecting jQuery & styles -->
<script src="https://code.jquery.com/jquery-3.5.0.js"></script>
<link rel="stylesheet" href="src/css/style.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div id="main-container">
<div id="buttons-container">
<div class="button"><img src="https://img.icons8.com/windows/52/000000/siren.png"/></div>
<div class="button" id="noright"><img src="https://img.icons8.com/windows/52/000000/no-audio.png"/></div>
</div>
<h1 id="status" class="clear">Hello</h1>
</div>
<!-- Connecting script -->
<script src="src/js/index.js"></script>
</body>
</html>