-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsecond_screen.html
More file actions
45 lines (39 loc) · 1.74 KB
/
second_screen.html
File metadata and controls
45 lines (39 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>Your Application: Second Screen</title>
<!-- Adds Bootswatch CSS -->
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/bootswatch/3.2.0/paper/bootstrap.min.css">
<!-- Adds Font Awesome -->
<link rel="stylesheet" type="text/css" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<!-- Adds your custom styles -->
<link rel="stylesheet" type="text/css" href="my_styles.css">
<!-- Adds Bootstrap Javascript -->
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="lead">Second screen. This is a p tag with a class of lead. Just throwing it in to make sure that the template is loading Bootstrap assets correctly. Replace this content with your own.</p>
<div class="btn-group"> <!-- Wrapping a set of <a> tags with btn classes in a <div> of class btn-group joins them together into a bar -->
<a href="first_screen.html" class="btn btn-primary">
<i class="fa fa-external-link"></i> <!-- Example of how to use Font Awesome icons; often, we use them as text within buttons -->
Show
</a>
<a href="second_screen.html" class="btn btn-warning">
<i class="fa fa-edit"></i>
Edit
</a>
<a href="third_screen.html" class="btn btn-danger">
<i class="fa fa-trash-o"></i>
Delete
</a>
</div>
</div>
</div>
</div>
</body>
</html>