-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.html
More file actions
51 lines (41 loc) · 1.8 KB
/
Copy pathbackup.html
File metadata and controls
51 lines (41 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Log Server Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="./client/css/custom.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div id="item" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#item" data-slide-to="0" class="active"></li>
<li data-target="#item" data-slide-to="1"></li>
<li data-target="#item" data-slide-to="2"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img class="img d-block img-responsive center-block" src="./import/pictures/screen.png" alt="First slide">
</div>
<div class="item">
<img class="img d-block img-fluid img-responsive center-block" src="./import/pictures/screen.png" alt="Second slide">
</div>
<div class="item">
<img class="img d-block img-fluid img-responsive center-block" src="./import/pictures/screen.png" alt="Third slide">
</div>
</div>
<a class="left carousel-control" href="#item" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#item" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</body>
</html>