-
Notifications
You must be signed in to change notification settings - Fork 1
/
siri.html
74 lines (68 loc) · 2.64 KB
/
siri.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Keith Wellman">
<meta name="description" content="Apple TV Simulator">
<title>Apple TV Simulator Project</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Apple TV Simulator</h1>
<div class="container">
<div class="screen">
<div class="topscreen">
<img src="images/topscreen1.jpg" alt="top screen" width="750px" />
</div>
<div class="bottomscreen">
<img src="images/apple-tv-movies.png" alt="apple tv movies" width="150px" />
<img src="images/apple-tv-settings.png" alt="apple tv settings" width="150px"/>
<img src="images/apple-tv-search.png" alt="apple tv searchs" width="150px" />
<img src="images/apple-tv-appstore.png" alt="apple tv app store" width="150px" />
<img src="images/apple-tv-music.png" alt="Music" width="150px">
<img src="images/apple-tv-tvshows.png" alt="TV Shows" width="150px">
<img src="images/apple-tv-nfl.png" alt="NFL" width="150px">
<img src="images/apple-tv-photos.png" alt="Photos" width="150px">
</div>
<img id="offset-left" src="images/apple-tv-approw.png" alt="apps" width="1000px"/>
</div>
<div class="remote">
<div id="top"> <!-- top section of remote -->
<a href="index-settings.html"><div class="leftclick"><p>L</p></div></a>
<div class="upperclick"><p>upper click</p></div>
<a href="index-appstore.html"><div class="rightclick"><p>R</p></div></a>
<a href="siri.html"><div class="middleclick"><p>middle click</p></div></a>
<div class="lowerclick">lower click</div>
<div class="clear"></div>
<div class="topbuttons"> <!-- 2 buttons for top of remote -->
<a href="index.html">
<div id="menu">
<p>MENU</p>
</div>
</a>
<a href="index.html">
<div id="home"> <!-- home button -->
<div id="tviconframe"></div> <!-- tv icon -->
<div id="smline"></div>
</div>
</a>
</div>
</div>
<div id="bottom"> <!-- bottom section of remote -->
<div class="bottombuttons"> <!-- 4 buttons for bottom of remote -->
<div id="siri">
<img src="images/siri.png" alt="Siri Icon">
</div>
<div id="volume"> <!-- volume button -->
<div id="volumeup"><p>+</p></div>
<div id="volumedown"><p>_</p></div>
</div>
<div id="play">
<p>► ❘❘</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>