Skip to content
Sean Batzel edited this page Jan 3, 2018 · 2 revisions

HyperText Markup Language is the delivery method for most Internet content. An HTML document is composed of tags, which are directives to browsers in the form <tag></tag>

An HTML document index.html has the basic structure

<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>

Each tag beginning with the / character denotes the end of a section of HTML.

Clone this wiki locally