-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.html
27 lines (25 loc) · 1.04 KB
/
default.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>App2</title>
<!-- WinJS references -->
<!-- At runtime, ui-themed.css resolves to ui-themed.light.css or ui-themed.dark.css
based on the user’s theme setting. This is part of the MRT resource loading functionality. -->
<link href="/css/ui-themed.css" rel="stylesheet" />
<script src="//Microsoft.Phone.WinJS.2.1/js/base.js"></script>
<script src="//Microsoft.Phone.WinJS.2.1/js/ui.js"></script>
<!----->
<!-- App2 references -->
<link href="/css/default.css" rel="stylesheet" />
<script src="/js/default.js"></script>
</head>
<body class="phone">
<button id="let's play" style="position:relative; left: 127.66px; top: 311.78px; width: 44%; height: 11%;" type="button" onclick="window.location.href='page1.html'">
LET'S PLAY
</button>
<button id="instruction" style="position:relative; left: -52px; top: 130.75px; width: 44%; height: 11%;" type="button" onclick="window.location.href='page.html'">
INSTRUCTIONS
</button>
</body>
</html>