-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tab.html
30 lines (27 loc) · 997 Bytes
/
Tab.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
<head>
<script type="text/javascript" src="Core.js"></script>
<link rel=stylesheet href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body onload="pageload()">
<div class="tab">
<div class="align">
<h1 id="flint"></h1>
<button class="tablinks" onclick="openCity(event, 'Ow')">Overworld</button>
<button class="tablinks" onclick="openCity(event, 'Pr')">Prestige</button>
<button class="tablinks" onclick="openCity(event, 'St')">Settings</button>
</div> </div>
<div id="Ow" class="tabcontent">
<button class="gravel" onclick="addflint()"><img src="Images/gravel.jpg"></button>
</div>
<div id="Pr" class="tabcontent">
<h3>2</h3>
<p>2</p>
</div>
<div id="St" class="tabcontent">
<div class ="stgrid">
<div class="save"><button class=stbutton onclick="save()">Save</button></div>
<div class="load"><button class=stbutton onclick="load()">Load</button></div>
</div>
</div>
</body>