forked from Pushkar111/JavaScript-ZeroToHero
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi1.html
More file actions
26 lines (19 loc) · 679 Bytes
/
api1.html
File metadata and controls
26 lines (19 loc) · 679 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">
<title>API Demo</title>
<script src="api1.js" defer></script>
</head>
<body>
<h1>API Demo</h1>
<button type="button" id="btn">Get Data</button>
<button type="button" id="btn2">Get All Data</button>
<button type="button" id="post-btn">Post Data</button>
<button type="button" id="put-btn">Put Data</button>
<button type="button" id="patch-btn">Patch Data</button>
<button type="button" id="delete-btn">Delete Data</button>
<div id="result"></div>
</body>
</html>