Here is a simple HTML website:
<HTML>
<title>My first website<title>
<body>
<body bgcolor=0033FF>
<font color=00CCFF>
<h1>My website</h1>
</font>
</body>
</HTML>
The basic requirements to use HTML are:
1. A Web browser like Mozilla or internet Explorer that you can use to view your HTML pages
2. A text editor like notepad, textpad or edit plus etc to create your HTML documents
3. Basic understanding of the HTML tags
If you have the above 3 things, you can go ahead and create your own web pages.
The important elements of an HTML document are:HeadTitleBody
Any text editor can be used to create an HTML document.
The two main child elements of an HTML document are HEAD and BODY. To make the document pass spec, you also need to include the TITLE tag in the HEAD section.
doctype, html,head, body, and title
In an HTML document, to start a new paragraph, the <p> tag is used. Here p stands for paragraph and will start a new para.
The elements of an HTML document are:HEADTITLEBODY
The important elements of an HTML document are:HeadTitleBody
Any text editor can be used to create an HTML document.
HTML tags are used to delimit HTML elements inside an HTML document.
HTML head title /title meta style /style /head body /body /HTML
The two main child elements of an HTML document are HEAD and BODY. To make the document pass spec, you also need to include the TITLE tag in the HEAD section.
doctype, html,head, body, and title
The <head> at the beginning of an HTML document comes between <html> and <body>. It is a container that includes information that relates to the entire document. You can include the following tags in the <head> tag: <title> (required in an HTML document), <style>, <base>, <link>, <meta>, <script>, and <noscript>.
The absolute essential tags are <html><body>Hello World</body></html>. Other tags are not required, but certainly add significant value to the format of the page and the ability for search engines to index your site.
A document's style is important in HTML very much. It makes it differ from other elements in the page.
In an HTML document, to start a new paragraph, the <p> tag is used. Here p stands for paragraph and will start a new para.
HTML document starts by <html> tag and ends with </html> tag.