Skip to content

Commit 04ca901

Browse files
committed
adding font awesome and jquery bits to the button
1 parent 20b0afd commit 04ca901

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,32 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4+
<!-- Bootstrap styles -->
45
<!-- Latest compiled and minified CSS -->
56
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
67

78
<!-- Optional theme -->
89
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
910

11+
<!-- Font Awesome icons -->
12+
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
13+
14+
1015
</head>
1116
<body>
1217
<div class="container">
1318
<div class="jumbotron">
1419
<h1>Foo!</h1>
20+
<button class="btn btn-primary btn-lg">Fancy <i class="fa fa-automobile">foo icon on the button!</i></button>
1521
</div>
1622
</div>
23+
24+
<!-- BootStrap and jQuery components -->
1725
<!-- Latest compiled and minified JavaScript -->
1826
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
1927

2028
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
2129
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
30+
2231
</body>
2332
</html>

0 commit comments

Comments
 (0)