-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
27 lines (23 loc) · 920 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Pink ball</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="common/css/index.css" />
<script type="application/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.0.3.min.js"></script>
<script type="application/javascript" src="common/js/index.js"></script>
</head>
<body class="container">
<div id="stage">
<a href="mobile/" class="item">
<div class="bg" style="background-color: lightblue"></div>
<span>Mobile friendly</span>
</a>
<a href="desktop/" class="item">
<div class="bg" style="background-color: lightgreen"></div>
<span>Desktop version</span>
</a>
</div>
</body>
</html>