-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathron-swanson-quote.html
More file actions
25 lines (24 loc) · 880 Bytes
/
ron-swanson-quote.html
File metadata and controls
25 lines (24 loc) · 880 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
<!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>AJAX 4 Ways Exercise</title>
<link rel="stylesheet" href="./assets/css/ron-swanson-quote.css">
</head>
<body>
<h1>Ron Swanson Quote Generator</h1>
<p>(4 ways of writing AJAX requests)</p>
<section class="container">
<button id="xhr">XHR</button>
<button id="fetch">Fetch</button>
<button id="jquery">jQuery</button>
<button id="axios">Axios</button>
</section>
<p id="quote">Quote Goes Here...</p>
<script src="./assets/js/lib/jquery-3.3.1.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="./assets/js/ron-swanson-quote.js"></script>
</body>
</html>