|
Create a basic Web page containing the essential document tags and some text, save it as a Web page, and look at it in a Web browser:
- From the Start menu, launch Notepad (usually in the Accessories group).
- Add the
<html>, <head>, and <title> tags.
- Add text for the document title.
- Close the Title and Head using
</title> and </head> tags.
- Add the
<body> tag.
- Add some text to your document.
- Close the Body and HTML using
</body> and </html>.
- Save the file to a convenient location by selecting File > Save, choosing a directory to save to, and naming your file practice.html.
- Preview your page in a Web browser (like Internet Explorer) by selecting My Computer from the Desktop and navigating to and launching your saved page.
|