-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (31 loc) · 1.37 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Elpis Digital-Hub</title>
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Include the compiled Ratchet CSS -->
<link href="http://10.10.0.1/ratchet-2.0.2/dist/css/ratchet.css" rel="stylesheet">
<link rel="stylesheet" href="http://10.10.0.1/css/style.css" rel="stylesheet">
</head>
<body>
<header class="bar bar-nav">
<!-- Continue to start menu -->
<h1 class="title">Choose Operating System</h1>
</header>
<!-- OS settings -->
<div class="os-choice">
<img src="content/img/android.svg" alt="android-device">
<a id="androidBtn" href="http://10.10.0.1/conf/langconf.html" target="_self">
<button class="btn"><span class="icon icon-play"></span>Android</button>
</a>
<img src="content/img/apple.svg" alt="apple-device">
<a id="iosBtn" href="http://10.10.0.1/conf/langconf-ios.html" target="_self">
<button class="btn"><span class="icon icon-play"></span>iOS</button></a>
</div>
</body>
</html>