Wednesday, June 25, 2014

ACTIVITY # 1 – APPLYING HTML TAGS
1.       Type the document below in Notepad.
Nature Reveals
Our Physical World, respect and explore. Where water meets land, a beautiful shore. Mountains we conquer, look down in awe. If you're an artist, make sure you draw. Nature exciting, adventurously new. Much more to see than a sky that is blue. If offers so much, open your eyes. Hope of today, with every sunrise. Nature shall feed, body and soul. Some call it home, others a hole. Memories are nurtured, when nature reveals. Sharing its pleasures, amazing it feels.
2.       Apply HTML Tags by inserting them into your document.
3.       For the document title, type:
<center><strong>Nature Reveals</strong></center>
4.       Enclose the paragraph with the opening <p> tag and the closing </p> tag.
5.       Add <em><b> and </b></em> to the words “respect and explore” like this:
<em><b> respect and explore </b></em>
Do this also in “body and soul” on the paragraph. The tags will make these words bold and slanted.
6.       Save the document as nature.html on your preferred folder.
7.       View the file on your web browser.

ACTIVITY 02 – CREATING AN HTML FILE IN NOTEPAD
1.       Launch Notepad.
2.       Type “<DOCTYPE html>” to set the document type to HTML5.
3.       In the second line, type the opening tag <html lang=“en”>. (This is to set your default language to English)
4.       Type the <head> tag in the third line.
5.       Inside the Head section, type the following tags to specify your page title:
<title>My First Web Page</title>
<meta charset=“utf-8”>
6.       Close the Head section with the </head> tag.
7.       For the Body section, type the following:
<body>
        <h1> My First Web Page </h1>
<p> This is the first simple page design <em> experience!</em></p>
<h2> This will be my sub-heading! </h2>
</body>
8.       End your document by typing the </html> closing tag.
9.       Save your document as, myfirstwebpage.html.

10.   Open the file in your browser.

No comments:

Post a Comment