-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCapitalTycoon.html
More file actions
50 lines (50 loc) · 1.05 KB
/
Copy pathCapitalTycoon.html
File metadata and controls
50 lines (50 loc) · 1.05 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Capital Tycoon</title>
<meta charset="UTF-8">
<link rel="icon" href="resources/HTML5.png" />
<style>
body {
margin: 0px;
width: 100%;
height: 100%;
}
#canvas {
margin: 0px;
position: fixed;
top: 0px;
left: 0px;
padding: 0px;
border: 0px solid black;
}
#toolBar {
background-color: black;
position: fixed;
top: 0px;
left: 0px;
padding: 0px;
width: 100%;
height: 27px;
}
div * {
margin: 3px 0px 0px 20px;
}
.labeledInput {
margin-left: 5px;
}
</style>
</head>
<body>
<canvas id="canvas" width="1600" height="1000">O teu browser não suporta a tag canvas do HTML5.</canvas>
<div id="toolBar">
<button id="backToIndex">Voltar</button>
<button id="reloadButton">Recarregar</button>
<select id="dropdownLanguage">
<option value="pt">Português</option>
<option value="en">English</option>
</select>
</div>
<script type="module" src="src/CapitalTycoon/entrypoint.ts"></script>
</body>
</html>