-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (84 loc) · 2.57 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<meta name="author" content="Nathan Smith" />
<meta name="copyright" content="Licensed under GPL and MIT." />
<meta name="description" content="Adapt.js serves CSS based on screen width." />
<title>BidXClaim</title>
<link rel="stylesheet" href="assets/css/master.css" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/bootstrap.min.css" />
<noscript>
<link rel="stylesheet" href="assets/css/mobile.min.css" />
</noscript>
<script>
// Edit to suit your needs.
var ADAPT_CONFIG = {
// Where is your CSS?
path: 'assets/css/',
// false = Only run once, when page first loads.
// true = Change on window resize and page tilt.
dynamic: true,
// First range entry is the minimum.
// Last range entry is the maximum.
// Separate ranges by "to" keyword.
range: [
'0px to 1280px = 960.min.css',
'1280px to 5600px = 1200.min.css'
]
};
</script>
<script src="assets/js/adapt.min.js"></script>
</head>
<body>
<div class="container_12">
<div class="grid_12" id="topheader">
<img src="assets/images/BidXclaim2.png" alt="logo" title="BidXClaim" id="mainlogo"/>
<ul id="topheadernavigationlist">
<li class="btn btn-inverse">Home</li>
<li class="btn btn-inverse">About Us</li>
<li class="btn btn-inverse">FAQ</li>
<li class="btn btn-inverse">Trades</li>
<li class="btn btn-inverse">Contact</li>
<li class="btn btn-inverse">Support</li>
</ul>
<a class="btn btn-primary" id="watchvideo">Watch Video</a>
</div>
</div>
<div class="container_12" id="content">
<div class="grid_9">
a
</div>
<div class="grid_3">
<img src="assets/images/right_top.gif" />
<img src="assets/images/phonenumber.jpg" />
<form class="form-horizontal">
<div class="control-group">
<label class="control-label" for="inputEmail">Email</label>
<div class="controls">
<input type="text" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputPassword">Password</label>
<div class="controls">
<input type="password" id="inputPassword" placeholder="Password">
</div>
</div>
<div class="control-group">
<div class="controls">
<label class="checkbox">
<input type="checkbox"> Remember me
</label>
<button type="submit" class="btn">Sign in</button>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>