-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdifferent-elements.html
More file actions
123 lines (118 loc) · 5.01 KB
/
different-elements.html
File metadata and controls
123 lines (118 loc) · 5.01 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Different Elements</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width"/>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" href="css/uui-all.css"/>
<link rel="stylesheet" href="css/custom-styles.css"/>
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/lib/components/awesome-bootstrap-checkbox.css"/>
<link rel="stylesheet" href="css/lib/components/datepicker3.css"/>
<link rel="stylesheet" href="css/lib/components/bootstrap-timepicker.css"/>
<link rel="stylesheet" href="css/lib/components/bootstrap-select.min.css"/>
<link rel="stylesheet" href="css/lib/components/jquery.mCustomScrollbar.css"/>
<link rel="stylesheet" href="jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css"/>
<link rel="stylesheet" href="js/lib/components/DataTables-1.10.2/css/jquery.dataTables.min.css"/>
<script src="js/lib/jquery-1.11.1.min.js"></script>
<script src="js/lib/components/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/lib/jquery.cookie.js"></script>
<script src="jquery-ui/jquery-ui-1.10.4.custom.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/uui-core.min.js" type="text/javascript"></script>
<script src="js/lib/components/bootstrap-datepicker.js"></script>
<script src="js/lib/components/bootstrap-timepicker.min.js"></script>
<script src="js/lib/components/bootstrap-select.min.js"></script>
<script src="js/lib/components/DataTables-1.10.2/js/jquery.dataTables.min.js"></script>
<script src="js/utils.js" type="text/javascript"></script>
<!-- IE9- support of HTML5 -->
<!--[if lt IE 9]>
<script src="js/lib/html5shiv.js"></script>
<script src="js/lib/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="replace site-header">replace</div>
</header>
<div class="wrapper">
<div class="replace left-side-bar">replace</div>
<div class="uui-main-container page-inside">
<main>
<div class="pattern-top"></div>
<div class="main-content">
<div class="main-content-hg">
<div class="support-title"><i class="fa fa-comments-o"></i>Support</div>
<div class="checkbox-row">
<label class="label-checkbox">
<input type="checkbox">
Water
</label>
<label class="label-checkbox">
<input type="checkbox">
Earth
</label>
<label class="label-checkbox">
<input type="checkbox">
Wind
</label>
<label class="label-checkbox">
<input type="checkbox">
Fire
</label>
</div>
<div class="checkbox-row">
<label class="label-radio">
<input type="radio" name="metal">
Gold
</label>
<label class="label-radio">
<input type="radio" name="metal">
Silver
</label>
<label class="label-radio">
<input type="radio" name="metal">
Bronze
</label>
<label class="label-radio">
<input type="radio" name="metal">
Selen
</label>
</div>
<div class="colors">
<select class="uui-form-element">
<option>Red</option>
<option>Green</option>
<option>Blue</option>
<option>Yellow</option>
</select>
</div>
<br>
<p>Buttons:</p>
<button class="uui-button" name="Default Button" value="Default Button">Default Button</button>
<input type="button" class="uui-button" value="Button">
</div>
<div class="pagination">replace</ul>
</div>
</main>
</div>
<div class="replace right-side-bar">replace</div>
</div>
<footer>
<div class="replace footer">replace</div>
</footer>
<Script language="JavaScript">
UUI.Vertical_Menu.init({"open": true});
</script>
<script>
$('.selectpicker').selectpicker();
</script>
<script>
includeSideBar();
activateTopElement(3,7);
includePagination();
</script>
</body>
</html>