-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guild Wars 2 API</title>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
</head>
<body>
<h2>Guild Wars 2 API</h2>
<div class="menu">
<a href="achievements.html"><span>Achievements</span></a>
<a href="equipment.html"><span>Equipment</span></a>
<a href="inventory.html"><span>Inventory</span></a>
<a href="wallet.html"><span>Wallet</span></a>
<a href="bank.html"><span>Bank</span></a>
<a href="materials.html"><span>Materials</span></a>
<a href="skins.html"><span>Skins</span></a>
<a href="recipe-skins.html"><span>Recipe Skins</span></a>
</div>
<p style="margin-top: 2em">All pages accept a parameter <span class="tt">?key=ABC</span> for
a <a href="https://wiki.guildwars2.com/wiki/API:API_key"><b>Guild Wars 2
API key</b></a> with appropriate permissions. Parameters set on this
page will be forwarded to the links.</p>
<script src="js/index.js" type="module" crossorigin></script>
</body>
</html>