-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (23 loc) · 889 Bytes
/
index.html
File metadata and controls
29 lines (23 loc) · 889 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
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Current Status</title>
<!-- Bootstrap for styling -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
</head>
<body class="container">
<p class="lead">How are things?</p>
<p>
<button id="panic-button" class="btn btn-danger">Panic</button>
</p>
<div class="alert alert-danger d-none" role="alert">
<h1 class="text-center m-0">RED ALERT!</h1>
</div>
<!-- Load jQuery library -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<!-- Load my library -->
<script src="js/index.js"></script>
</body>
</html>