Skip to content

Commit 7cbe310

Browse files
author
Daniel Kim
committed
Add bootstrap font awesome script, use icon trash
1 parent 8a108fb commit 7cbe310

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

index.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@
33
<head>
44
<title>TodoKid</title>
55
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
76
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.19/angular.min.js"></script>
87
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
98
<script type="text/javascript" src="app.js"></script>
10-
<script type="text/javascript" src="todo.js"></script>
11-
12-
9+
<script type="text/javascript" src="todo.js"></script>
1310
<link rel="stylesheet" type="text/css" href="/css/style.css">
1411
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
12+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
13+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
1514

1615
</head>
1716

@@ -95,13 +94,13 @@
9594
</ul>
9695
</div>
9796

98-
<div class="box group">
99-
<h1>Todo list</h1>
97+
<div class="box">
98+
<h1>Todo list <i class="fa fa-plus"></i></h1>
10099
<input type="text" placeholder="Add new todo">
101100
<ul>
102-
<li><span>X </span>Buy A Potion</li>
103-
<li><span>X </span>Buy New Roboe</li>
104-
<li><span>X </span>Fight Dragon</li>
101+
<li><span><i class="fa fa-trash"></i></span> Buy A Potion</li>
102+
<li><span><i class="fa fa-trash"></i></span> Buy New Roboe</li>
103+
<li><span><i class="fa fa-trash"></i></span> Fight Dragon</li>
105104
</ul>
106105
</div>
107106

0 commit comments

Comments
 (0)