HTML

Introduction

HTML is the standard markup language for Web pages. HTML uses tags to designate different elements (eg. the <img> tag embeds an image, and the <p> tag begins a new paragraph).

Example HTML 1

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

<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body>
</html>

Example Output 1

Example HTML 2

Example Output 2

Resources