-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.html
31 lines (27 loc) · 929 Bytes
/
api.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<title>API</title>
<style>
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
height: 100vh;
}
</style>
</head>
<body class="text-white bg-black">
<div class="m-auto w-50 h-25 d-flex align-items-center justify-content-evenly">
<button type="button" id="btn1" class="btn btn-primary">change background</button>
<button type="button" id="btn2" class="btn btn-primary">calculate sum</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="./api.js"></script>
</body>
</html>