-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
76 lines (71 loc) · 2.42 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home / Fetch API in JavaScript</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Facebook sharing meta data -->
<meta property="og:title" content="Home / Fetch API Demo by Maye Edwin" />
<meta
property="og:site_name"
content="Home / Fetch API Demo by Maye Edwin"
/>
<meta property="og:type" content="website" />
<meta
property="og:description"
content="The Fetch API provides an easy, logical way to fetch resources asynchronously across the network."
/>
<meta
property="og:image"
content="https://cdn.glitch.com/f8a9869c-46a4-4497-a264-167fdf83df96%2Fimages.jpeg?v=1574159338212"
/>
<meta property="og:image:type" content="image/jpg" />
<!-- Twitter meta data -->
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:site_name"
content="Home / Fetch API Demo by Maye Edwin"
/>
<meta name="twitter:creator" content="@mayeedwin" />
<meta name="twitter:title" content="Home / Fetch API Demo by Maye Edwin" />
<meta
name="twitter:description"
content="The Fetch API provides an easy, logical way to fetch resources asynchronously across the network."
/>
<meta
name="twitter:image"
content="https://cdn.glitch.com/f8a9869c-46a4-4497-a264-167fdf83df96%2Fimages.jpeg?v=1574159338212"
/>
<meta
name="keywords"
content="es6, fetch api, fetch, maye edwin, pwa fire"
/>
<meta name="author" content="Maye Edwin" />
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="./App.css" />
</head>
<body>
<header>
<h1>Demonstrating the Fetch API</h1>
<p>View the Project <a href="https://glitch.com/~javascript-fetch" target="_blank" > Source Code Page</a></p>
</header>
<main>
<h3>
A list of User Profiles
</h3>
<div class="users"></div>
</main>
<footer>
<!-- Remix Button -->
<a href="https://glitch.com/edit/#!/remix/javascript-fetch">
<img
src="https://cdn.glitch.com/2bdfb3f8-05ef-4035-a06e-2043962a3a13%2Fremix%402x.png?1513093958726"
alt="remix this"
height="33"
/>
</a>
</footer>
<script src="./App.js" type="module"></script>
</body>
</html>