File with Angular component layout
The app.component.html file contains the component layout. This file is called the template or presentation of the component. By default, there will be some text there. You can safely delete it and write your own. Let's write a div with text there for the test:
<div>
text
</div>
Make a tag with text in your component layout. Check that the changes appear in the browser.