Users interact with your application through their web browser. The role of the web browser is to display the HTML, JavaScript, and images. Each web document contains a section we call the head and a section we call the body.
The head contains the title tag, link tag, and script tag. The link and script tags allow the page to include external files for style sheets and JavaScript, respectively. Our application will contain links to style sheets and JavaScript for Bootstrap .
The body of the document ...