-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (37 loc) · 1013 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
33
34
35
36
37
38
39
40
41
<!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" />
<title>HTTP requests</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/0.5.0/modern-normalize.min.css"
/>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<style>
fieldset {
margin: auto;
width: 50%;
}
button {
background-color: #458;
border: none;
border-radius: 5px;
color: #fff;
padding: 0.5rem 1rem;
font-weight: bold;
}
</style>
<fieldset>
<button class="get-btn">get</button>
<button class="send-btn">send</button>
</fieldset>
<!-- <script src="xhr.js"></script> -->
<!-- <script src="fetch.js"></script> -->
<script src="axios.js"></script>
</body>
</html>