You are on page 1of 3

Capiz State University Dayao Campus Computer Education Department Name:_____________________________________ Score:________________ Date Started:_______ Date Finished: ________Computer

Number:_________ Web Page Development 1 Laboratory Activity 2 TOPIC NO. 2: BASIC HTML Objectives 1. 2. 3. 4. 5. 6. Define and Explain the HTML (Hypertext Mark-up Language) Demonstrate Basic steps on how to create simple webpages Explain and dissect html tags used as a sample web document Introduce basic structure of an HTML Discuss the two types of tags Exemplify and demonstrate how to write html tags to create web document Demonstrate how to edit an existing webpage

Exercise 1 : Look below at the source code of A very simple web page and a screenshot of how it looks in a browser. Then, choose A , B or C to answer the questions. Here is the source code for A very simple web page:
<html> <head> <title>Example One</title> </head> <body> A very simple web page. </body> </html> Here is A very simple web page in a browser:

Questions:
1. What is the title of A very simple web page? A. B. C. Example One A very simple web page. Page1.html

2. Among the selection below what is the possible file name of A very simple web page? A. B. C. Example One A very simple web page. Page1.html

3. What is the content of A very simple web page? A. B. C. Example One A very simple web page. Page1.html

4. What do you find between <body> </body>? A. B. C. 5. A. B. C. The title of the page. The content of the page. The file name. Among the section of html document, where does the title located? Head Section Body Section Whole document

Exercise 2: Create an HTML Document based on the following procedure and instructions
1. The title of the page must be Web Page 1 2. At the Body of the page insert the following content

This is my first html document I am grateful to learn new ideas and knowledge about this topic May this exercise motivate me to aspire more learnings about this course I thank God for this opportunity

3. The first line of the content must be in Italic 4. Format the font color of the second line into red 5. Format the font size of the third line into 4 6. Set the font of the third line based on the following format Font size= 4, font color=blue, font face=arial 7. Set the word God in the fourth line into bold format 8. Save your html file in your USB with the filename Exercise2 9. View your html document in a web browser. 10. View the source code of your html document.

You might also like