In this exercise we will add basic skeleton to our page.
View -> Integrated terminal or CTRL + ~
npm start
Open browser and navigate to
src\app\app.component.html
<h1>Todo</h1>
<h1>Todo</h1>
<div>List of todos</div>
In next tab open src\app\app.component.css
* {
border: 1px solid crimson;
}
Add another div
inside previous one.
<h1>Todo</h1>
<div>
<div>Add new todo</div>
List of todos
</div>
:) just play