Before formally learning the HTML language, first write a simple HTML web page to give everyone a sensory understanding of HTML. Write a page to display it on the title bar of the browser. This is my first HTML page. I also wrote an HTML page to display it on the text area! . The specific operation process is as follows:
1. Click the [Start]—> [Program]—> [Attachment]—> [Notepad] menu command on the taskbar in turn, start the Notepad program, and enter the statement shown in Figure 1.
(Figure 1)
<html> <head> <title>This is my first HTML web page</title> </head> <body> I have also written an HTML web page! </body></html>
2. Click the [File][Save] menu command, enter the file name one.html in the pop-up Save As... dialog box, click the [Save] button to save to the desktop. Tip: The web page file can be named one.html or one.htm.
3. Open the one.html file saved on the desktop and you can watch the web page effect in IE browser. It shows on the title bar of the web page. This is my first HTML web page. When it shows in the text area, I have also written an HTML web page! , as shown in Figure 2. (Figure 2)