-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (34 loc) · 1.13 KB
/
index.html
File metadata and controls
46 lines (34 loc) · 1.13 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>API Data Explorer</title>
<link rel="icon" href="Fetch.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>API Data Explorer</h1>
<p class="author">Created & Developed by Faizan Malik</p>
<!-- Random User Generator -->
<div class="card">
<h2>Random User Generator</h2>
<div id="user">
<p class="message">Click the button to generate a random user.</p>
</div>
<button onclick="fetchUser()">Get Random User</button>
</div>
<!-- API Posts -->
<div class="card">
<h2>Fetch API Posts</h2>
<div class="btn-group">
<button onclick="getPost()">Fetch Next Post</button>
<button onclick="clearPosts()" class="clear-btn">Clear</button>
</div>
<div id="postContainer"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>