Home > Article > Web Front-end > Example of how to create a simple HTML document
HTML (Hypertext Markup Language) is an essential part of Web design. Creating HTML documents gives you better control over website construction and development. This article will introduce you how to create a simple HTML document.
First, you need to open a text editor on your computer, such as Notepad (Windows) or Text Editor (Mac).
Start writing HTML code in the text editor. HTML code has strict format and syntax rules. When writing HTML code, you need to follow the following points:
In the example, the root element is the html tag, the start tag is , and the end tag is < ;/html>. The root element contains two child elements: head and body elements.
After you finish writing the HTML document, you need to save it as a file in HTML format. Select the "File" menu in your text editor and then select the "Save As" option. When saving a file, the file name needs to end with a .html extension, such as "index.html".
Finally, you need to open the HTML document you created. In the browser, select the "File" menu, then select the "Open File" option, select the HTML file you created, and open it in the browser.
In short, creating an HTML document is very simple. You only need to learn the basic syntax and format of HTML. Start writing HTML code and create your small site!
The above is the detailed content of Example of how to create a simple HTML document. For more information, please follow other related articles on the PHP Chinese website!