-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.9 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
<!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">
<link href="https://fonts.googleapis.com/css?family=B612&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/app.css">
<link rel="shortcut icon" href="./images/api.png" type="image/x-icon">
<title>API | Playground</title>
<link rel="manifest" href="./manifest.json" />
<meta name="theme-color" content="rgba(179, 69, 179, 0.767)" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="rgb(15, 29, 0)" />
<meta name="apple-mobile-web-app-title" content="API Playground" />
<!-- <meta name="msapplication-TileImage" content="./images/Icon-144.png"> -->
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="theme-color" content="rgba(179, 69, 179, 0.767)" />
<!-- SEO tags -->
<meta name="title" content="API playground js" />
<meta name="description" content="Simple usage of api as a front-end developer" />
<meta name="keywords"
content="api, api usage, javascript, fetch, rest api, web project, code, front end developer, dev" />
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="language" content="English" />
<meta name="author" content="Calebdeji" />
</head>
<body>
<main>
<img src="./images/api.png" alt="Random logo">
<div id="root">
</div>
<footer>
<p>Inspired by <a href="https://www.taniarascia.com/how-to-connect-to-an-api-with-javascript/">Tania</a>,
Modified by <a href="https://calebdeji.github.io">Calebdeji</a></p>
</footer>
</main>
<script src="./js/app.js"></script>
</body>
</html>