-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 1.88 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="new Description">
<meta name="keywords" content="list all keywords">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Games console</title>
</head>
<body>
<div class="container">
<div id="tv" class="tv">
<img src="./img/tv.png" alt="tv screen">
<div id="screen" class="screen">
<div id="view" class="view off">
<div class="home">
<h1 class="home-msg"></h1>
<ul>
<li><span class="icon"><img src="./img/icons8-xbox-32.png" alt="icon"> </span> On/OFF</li>
<li><span class="icon yellow">Y</span> TV mode</li>
<li class="active"><span class="icon red">B</span> Home</li>
<li><span class="icon blue">X</span> Game shop</li>
<li><span class="icon green">A</span> Google</li>
</ul>
</div>
</div>
</div>
</div>
<div id="joystick" class="joystick">
<img src="./img/joystick.jpeg" alt="joystick">
<div id="buttons" class="btn-container">
<button data-action="onOff" class="btn btn-top">ON/OF TV</button>
<button data-action="goTv" class="btn btn-y">TV program</button>
<button data-action="goBack" class="btn btn-b">Back to hello screen</button>
<button data-action="goShop" class="btn btn-x">Games shop</button>
<button data-action="goGoogle" class="btn btn-a">Google</button>
</div>
</div>
</div>
<script src="main.js"> </script>
</body>
</html>