-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample.html
33 lines (29 loc) · 940 Bytes
/
sample.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
<!DOCTYPE html>
<html>
<head>
<title>Test Case</title>
<link rel="stylesheet" href="/css/bootstrap.min.css"/>
<link rel="stylesheet" href="/css/style.css"/>
<!--
This is a comment, edited on my iPad
-->
<script src="/js/jquery-2.1.0.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
</head>
<body>
<div id="content" class="border">
<div class="hi">
<div class="col-xs-12 col-sm-7 col-md-7">
<h1>Hello</h1>
<h4>Hi</h4>
<div id="call-to-actions" class="hidden-xs">
<a href="/order" type="button" class="btn btn-lg btn-primary">Buy Now</a>
</div>
<h4 class="hidden-xs">Available now. Ships in 1-2 weeks.</h4>
</div>
<img id="splash-image" class="hidden-xs col-sm-4 col-sm-offset-1 col-md-4 col-md-offset-1" src='/img/device.jpg'>
<img id="splash-image-xs" class="visible-xs" src="/img/device.jpg">
</div>
</div>
</body>
</html>