-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
90 lines (78 loc) · 3.18 KB
/
template.html
File metadata and controls
90 lines (78 loc) · 3.18 KB
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
89
90
<!doctype html>
<!--[if lt IE 7 ]><html lang="en" class="no-js ie6"> <![endif]-->
<!--[if IE 7 ]><html lang="en" class="no-js ie7"> <![endif]-->
<!--[if IE 8 ]><html lang="en" class="no-js ie8"> <![endif]-->
<!--[if IE 9 ]><html lang="en" class="no-js ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title></title>
<!-- main JS libs -->
<script src="js/libs/modernizr.min.js"></script>
<script src="js/libs/jquery-1.10.0.js"></script>
<script src="js/libs/jquery-ui.min.js"></script>
<script src="js/libs/bootstrap.min.js"></script>
<!-- Style CSS -->
<link href="css/bootstrap.css" media="screen" rel="stylesheet">
<link href="style.css" media="screen" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.css">
<!-- scripts -->
<script src="js/general.js"></script>
<!-- Include all needed stylesheets and scripts here -->
<!--[if lt IE 9]><script src="js/respond.min.js"></script><![endif]-->
<!--[if gte IE 9]>
<style type="text/css">
.gradient {filter: none !important;}
</style>
<![endif]-->
</head>
<body>
<div class="body_wrap">
<div class="container" style="padding-top:30px;">
<div class="inner">
<!-- tab header -->
<ul class="tabs clearfix">
<li>
<a href="#recent" data-toggle="tab">Recent</a>
</li>
<li>
<a href="#popular" data-toggle="tab">Popular</a>
</li>
</ul>
<!-- tab contaner -->
<div class="tab-content boxed clearfix">
<div class="tab-pane fade in active" id="recent">
<div class="container">
<label class="label_title">Name</label>
<input type="text"/>
</div>
<div class="container">
<label class="label_title">Last Name</label>
<input type="text"/>
</div>
<div class="container" style="padding:10px;">
<div class="rating">
<span class="star on"> <input type="hidden" value="1"/></span>
<span class="star on"> <input type="hidden" value="2"/></span>
<span class="star on"> <input type="hidden" value="3"/></span>
<span class="star off"> <input type="hidden" value="4"/></span>
<span class="star off"> <input type="hidden" value="5"/></span>
</div>
</div>
<div class="container" style="padding:10px;">
<a href="" class="btn btn-green"><span>Save</span></a>
<a href="" class="btn btn-red"><span>Clear</span></a>
</div>
</div>
<div class="tab-pane fade" id="popular">
<span class="fa fa-facebook"> Facebook</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>