-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (33 loc) · 1.38 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
<!-- Created on 10/17/23 by ArchILLtect -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>API_Interface Chooser</title>
<meta name="description" content="Created to give access to multiple API_Interfaces">
<meta name="keywords" content="">
<meta name="author" content="ArchILLtect">
<!-- // ----- Normalize CSS for Cross Browser Consistency ---- // -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" />
<!-- // ----- My Styles ---- // -->
<link href="styles.css" rel="stylesheet">
<!-- http://realfavicongenerator.net/ -->
<!-- // ----- jQuery Loader ---- // -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- // ----- Validation loader ---- // -->
<script src="https://cdn.jsdelivr.net/jquery.validation/1.13.1/jquery.validate.min.js"></script>
</head>
<body>
<header>
<h1>Choose you API:</h1>
</header>
<main>
<p>D&D_API_5e ===> <a href='./D&D_API_5e/index.html'>Click Me</a></p>
<p>STAPI</p>
</main>
<script src="script.js"></script>
</body>
</html>