-
Notifications
You must be signed in to change notification settings - Fork 1
HTML
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.
University of Scranton Technical Consultants Documentation under Construction