-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (53 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello, world!</title>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="node_modules/font-awesome/css/font-awesome.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="offset-md-4 col-md-4 col-sm-12" style="border: solid 5px red; padding: 10px;">
<abbr title="Hello" class="text-success bg-danger">Heading 1</abbr>
<ul class="list-inline">
<li>Test</li>
<li>Hello</li>
<li>World</li>
</ul>
<table class="table table-striped table-bordered table-hover">
<thead>
<th>Col 1</th>
<th>Col 2</th>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
<tr>
<td>Data 5</td>
<td>Data 6</td>
</tr>
</tbody>
</table>
<button class="btn btn-lg btn-success">Hello</button>
<button class="btn btn-lg btn-danger">Self destruct</button>
</div>
<div class="col-md-4 col-sm-12" style="border: solid 5px red;">
<img class="img-fluid img-circle" alt="Mascot" src="img/mascot.png">
</div>
<div class="col-md-12 col-sm-12">
<marquee><i class="fa fa-android"></i></marquee>
</div>
</div>
</div>
</body>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="js/main.js"></script>
</html>