In this chapter, various component of HTML are discussed to design a web page.
The basic structure for an HTML page is shown below.
1 <!DOCTYPE html> <!-- tells browser above the html version -->
2 <html><!-- beginning of the html document -->
3 <head>
4 <!-- header related tags e.g. title, links etc. -->
5 </head>
6
7 <body>
8 <!-- actual html document here -->
9
10 <!-- add JavaScript files here -->
11 </body>
12 </html>
© Copyright 2025 | FolkLight Studios