Introduction To HTML
Getting Started

Basic Tags Needed For A Web Page

<html>
<head>
<title></title>
</head>
<body>
</body>
</html>

Exercise 1

Copy the tags into a new document in Notepad. Enter your name after the <title> tag and before the </title> tag.

Type your name between the <body> and </body> tags.

Save your work and view your first web page in the browser.