Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

HTML guide to website construction


May 27, 2021 Website construction guide


Table of contents


HTML guide


HTML - Hyper Text Markup Language

HTML is the primary language for building websites/web production.

HTML is an easy-to-learn markup language.

HTML defines the content of a Web page using tags like the one in parentheses:

HTML instance

<html>
<body>

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Try it out . . .
Click the "Try it" button to view the instance.

HTML uses the start and end tags to mark a page element: in the example above, the label marks the beginning of a paragraph and the end of the paragraph.

By using simple HTML tags, web designers can add titles, paragraphs, text, tables, pictures, lists, programming code, etc. to a web page (HTML document).

Web browsers (IE browsers, Firefox, Chrome, etc.) read HTML documents, interpret HTML tags, and display the correct user-readable content (HTML tags are not displayed):

HTML guide to website construction

Html can be used to define the content of a Web page, according to HTML standards. / p>

To define visual styles (color, size, appearance, layout, etc.), you should use CSS (cascade style sheets) (see next chapter).


How do I learn HTML?

W3CSchool offers a complete HTML tutorial where you can learn all about HTML.

HTML learning is simple - you'll love it.

Learn our full HTML tutorial

Learn our complete HTML reference manual