Skip to content

Commit ce88e73

Browse files
author
Vlad Sandu
committed
Style html
1 parent 00cc7b7 commit ce88e73

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

TodoApp/ClientApp/src/app/todo-item-inserter/todo-item-inserter.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="container">
2-
<h1>Add a Todo item:</h1>
2+
<h3>Add a Todo item:</h3>
33
<form>
44
<div class="form-group">
55
<label for="description">Description:</label>
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
<ul>
2-
<li *ngFor="let item of items">
3-
<todo-item [item]="item"></todo-item>
4-
</li>
5-
</ul>
1+
<div class="container">
2+
<h3>Active todo items:</h3>
3+
<ul>
4+
<li *ngFor="let item of items">
5+
<todo-item [item]="item"></todo-item>
6+
</li>
7+
</ul>
8+
</div>

0 commit comments

Comments
 (0)