-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
24 lines (24 loc) · 1.21 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content='width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<title>Pi-Car Controls</title>
<link rel="stylesheet" href="style.css" />
<script type="text/javascript" src="script.js"></script>
</head>
<body onload="initialize()">
<div id="wrapper" class="main" unselectable="on">
<button class="controls" type="button" name="restart" id="restart"></button>
<button class="controls" type="button" name="shutdown" id="shutdown"></button>
<button class="controls" type="button" name="up" id="up"></button>
<button class="controls" type="button" name="down" id="down"></button>
<button class="controls" type="button" name="left" id="left"></button>
<button class="controls" type="button" name="right" id="right"></button>
</div>
<div id="warning-message" class="main" unselectable="on">
<h1>The page must be viewed in landscape mode</h1>
<img src="img/rotate.gif" alt="">
</div>
</body>
</html>