-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 951 Bytes
/
index.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
32
<!DOCTYPE html>
<html>
<head>
<title>Test FED</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/style.css">
<link rel="stylesheet" href="./style/asyncpro.css">
</head>
<body>
<header>
</header>
<main>
<h1>Test Async!</h1>
<section class="btn-container">
<button class='btn btn-01' type="button">Click me, I'm XHR!</button>
<button class='btn btn-02' type="button">Click me, I'm Promise!</button>
<button class='btn btn-03' type="button">Click me, I'm As/Aw!</button>
</section>
<section class="script-cbpro-container">
<button class="btn-cbpro btn-cbpro-01" type="button">Call the script!</div>
<button class="btn-cbpro btn-cbpro-02" type="button">Call the Settimeout!</div>
</section>
</main>
<script type="module" src="./js/index.js"></script>
<script type="module" src="./js/asyncpro/run.js"></script>
</body>
</html>