-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile.html
41 lines (41 loc) · 1.26 KB
/
mobile.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
<!-- Created by Nicole Walter -->
<html>
<meta name = "viewport" content = "width=device-width, minimum-scale=1.0, maximum-scale = 1.0, user-scalable = no">
<title>D&D Utility Tool</title>
<link rel="shortcut icon" type="image/png" href="favicon.png?">
<style>
p {
margin: 5px;
}
body { margin:0; }
input[type=submit] {
width: 100%;
background-color: Gainsboro;
padding: 30px;
margin: 2px;
border: 1px solid #ccc;
border-radius: 55px;
cursor: pointer;
font-size: 22px;
}
</style>
</head>
<body onresize="resize_canvas()">
<script type="text/javascript" src="js/resize.js" ></script>
<header>
<h1 style="text-align:center">D&D Utility Tool</h1>
</header>
<form action="./mobile_npc.html">
<input type="submit" value="Non-Player Characters" />
</form>
<form action="./mobile_creatures.html">
<input type="submit" value="Creatures and Combat" />
</form>
<form action="./mobile_wordgen.html">
<input type="submit" value="Fantasy Dictionary" />
</form>
<form action="./mobile_encounters.html">
<input type="submit" value="Roleplaying Encounters" />
</form>
</body>
</html>