forked from amitsrivastava4all/UiCodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (71 loc) · 2.47 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.css"/>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<div class="container">
<button class="btn btn-primary">Ok<span class="glyphicon glyphicon-sunglasses"></span></button>
<table class="table table-bordered table-striped table-hover table-responsive ">
<tr>
<td>Empno</td>
<td>Name</td>
<td>Salary</td>
</tr>
<tr>
<td>1001</td>
<td>Ram</td>
<td>9090</td>
</tr>
<tr>
<td>1002</td>
<td>Shyam</td>
<td>4545</td>
</tr>
</table>
</div>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="images/scahin1.jpg" alt="Sachin First Image">
<div class="carousel-caption">
<h1>Sachin First Image</h1>
</div>
</div>
<div class="item">
<img src="images/sachin2.jpg" alt="Sachin Second Image">
<div class="carousel-caption">
<h1>Sachin Second Image</h1>
</div>
</div>
<div class="item">
<img src="images/sachin3.jpg" alt="Sachin Third Image">
<div class="carousel-caption">
<h1>Sachin Third Image</h1>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</body>
</html>