HTML Introduction

Home Next ❯

HTML can publish documents online with text, images, lists, tables, etc.

HTML can access web resources such as images, videos or other HTML document via hyperlinks.

HTML can create forms to collect user inputs like name, e-mail address, comments, etc.

Start Learning »



A Simple HTML Document

Example

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>Page Heading</h1>
<p>Page paragraph.</p>

</body>
</html>



HTML References

HTML Elements HTML Global Attributes HTML Event Attributes HTML Attributes HTML Canvas HTML Audio/Video HTML Colors HTML Deprecated HTML Charactersets HTML Units Browser shortcut keys ASCII Encoding MIME Types Language Code ISO Country Codes HTTP Status Messages HTML Document Type URL Encoding Uniform Resource Locators
Home Next ❯