-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop.html
More file actions
26 lines (26 loc) · 859 Bytes
/
loop.html
File metadata and controls
26 lines (26 loc) · 859 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">
<meta http-equiv="X-UA-Compatible", content="IE-edge">
<title>Loop | JSProject</title>
<link rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link rel="stylesheet", href="css/style.css">
<style>
button {padding: 1rem 2rem; margin: 1rem; font-weight: 800; cursor: pointer;}
</style>
</head>
<body>
<header>
</header>
<main>
<button onClick="listSubjects4()">List Subjects</button>
<div id="subjects-list">
</div>
</main>
<footer>
</footer>
<script src="js/loop.js"></script>
</body>
</html>