-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
59 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/all.css">
<link rel="stylesheet" type="text/css" href="css/fontello.css">
<title>Projeto PRI</title>
</head>
<body>
<!-- Header -->
<div class="jumbotron">
<div class="header">
<center>
<img src="img/pri.jpg" class="img-responsive" alt="Logo do Projeto"></img>
</center>
</div>
</div>
<!-- Phrase list -->
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<ul id="phraseList" class="list-group list-group-flush">
<!-- List items will be add here by function WritePhrasesOnHTML -->
</ul>
</div> <!-- end .card -->
</div> <!-- end .col-md-12 -->
</div> <!-- end .row -->
</div> <!-- end .container -->
<!-- Control Buttons -->
<div class="controlButtons">
<center>
<button id="btnUp" type="button" class="btn btn-primary btn-lg"><i class="icon-up-big"></i></button>
<button id="btnPlay" type="button" class="btn btn-primary btn-lg"><i class="icon-play"></i></button>
<button id="btnDown" type="button" class="btn btn-primary btn-lg"><span class="icon-down-big"></span></button>
</center>
</div> <!-- end .controlButtons -->
</body>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/index.js"></script>
</html>