-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·135 lines (124 loc) · 4.96 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
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
124
125
126
127
128
129
130
131
132
133
134
135
<html>
<head>
<script src="https://code.jquery.com/jquery-2.2.2.min.js" integrity="sha256-36cp2Co+/62rEAAYHLmRCPIych47CvdM+uTBJwSzWjI=" crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<script src="script.js"></script>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<ul id="myMenu" class="nav navbar-nav">
<li class="active"><a href="#">Link <span class="sr-only">(current)</span></a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
</nav>
<div class="jumbotron">
<h1>HELLO world!</h1>
</div>
<div class="row">
<!-- col-xs-6 1 -->
<div class="col-xs-6">
<h1> Heading 1</h1>
<div class="panel panel-info">
<div class="panel-heading">Panel heading without title</div>
<div class="panel-body">
Panel content
</div>
</div>
<table id="table" class="table table-condensed table-hover table-striped">
<thead>
<tr>
<th> asa</th>
<th> asaasd</th>
</tr>
</thead>
<tbody>
<tr>
<td>car</td>
<td>house</td>
</tr>
<tr>
<td>it</td>
<td>vadim</td>
</tr>
<tr>
<td>word</td>
<td>pen</td>
</tr>
<tr>
<td>car</td>
<td>house</td>
</tr>
<tr>
<td>it</td>
<td>vadim</td>
</tr>
<tr>
<td>word</td>
<td>pen</td>
</tr>
<tr>
<td>hello</td>
<td>bye</td>
</tr>
<tr>
<td>one product1</td>
<td>second product</td>
</tr>
<tr>
<td>one product2</td>
<td>second product</td>
</tr>
<tr>
<td>one product3</td>
<td>second product</td>
</tr> <tr>
<td>one product4</td>
<td>second product</td>
</tr>
<tr>
<td>one product5</td>
<td>second product</td>
</tr>
<tr>
<td>one product6</td>
<td>second product</td>
</tr> <tr>
<td>one product7</td>
<td>second product</td>
</tr>
<tr>
<td>one product8</td>
<td>second product</td>
</tr>
<tr>
<td>one product9</td>
<td>second product</td>
</tr>
</tbody>
</table>
</div>
<div class="col-xs-6">
<h1> Heading 2</h1>
<div class="panel panel-default">
<div class="panel-heading">Panel heading without title</div>
<div class="panel-body">
Panel content
<form>
<input type="text" class="form-control"><br />
<input type="text" class="form-control well"><br />
<textarea class="form-control"></textarea><br />
<textarea class="form-control well"></textarea><br />
<button type="submit" class="button btn btn-success">GOT IT</button>
</form>
</div>
</div>
</div>
</div>
</div>
</body>
</html>