-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 1.03 KB
/
index.html
File metadata and controls
33 lines (32 loc) · 1.03 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
<!-- All rights reserved -->
<!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">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="fav.png">
<title>Javascript Fetch</title>
</head>
<body>
<div class="container">
<form class="form">
<input type="number" class="form_field" placeholder="Post ID" id="postID">
<button type="submit" class="fetch-btn">Fetch</button>
<p class="tip">Any ID between 1 - 150</p>
<p class="msg"></p>
</form>
</div>
<div class="posts">
<span class="clear-all">Clear All</span>
<span class="close"></span>
<div class="post-group">
</div>
<div id="root"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="script.js"></script>
</body>
</html>