-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (55 loc) · 2.14 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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<title>Ancestry and Heritage Builder</title>
<META charset="UTF-8">
<META name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<META NAME='expires' CONTENT='never' />
<META NAME='language' CONTENT='English, EN' />
<META name="description" content="">
<META name="keywords" content="HTML5,CSS,JavaScript, html5 session storage, html5 local storage">
<META name="author" content="jeffwain.com">
<script src="properties.js"></script>
<script src="traits.js"></script>
<script src="nav.js"></script>
<script src="ui.js"></script>
<script src="data.js"></script>
<script src="app.js"></script>
<script src="sidebar.js"></script>
<script src="setup.js"></script>
<script src="https://code.jquery.com/jquery-3.6.2.min.js"
integrity="sha256-2krYZKh//PcchRtd+H+VyyQoZ/e3EcrkxhM8ycwASPA=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Chivo+Mono:wght@600&family=Eczar:wght@400;700&family=Source+Serif+Pro:wght@400&family=Source+Sans+Pro:wght@400&family=Roboto&family=IM+Fell+Great+Primer&family=IM+Fell+Great+Primer+SC&family=IM+Fell+English+SC&family=Assistant&family=IM+Fell+English:ital@0;1&display=swap"
rel="stylesheet">
</head>
<body onload="setup();">
<header>
<h1>Ancestry and Lineages Character Builder</h1>
<nav class="tabs">
</nav>
</header>
<main id="overview">
<div id="content">
<form name="skills">
</form>
</div>
<aside id="selected-stats" class="sidebar">
</aside>
<form name=ShoppingList>
<div id="items_table">
<h3>Debug</h3>
<table id=list></table>
<p>
<label><input type=button value="Clear" onclick="storageClear();debugRefresh();">
<i>* Delete all items</i></label>
</p>
</div>
</form>
</main>
</body>
</html>