Вы находитесь на странице: 1из 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. Define and Explain the HTML (Hypertext Mark-up Language)

  • 2. Demonstrate Basic steps on how to create simple webpages

  • 3. Explain and dissect html tags used as a sample web document

  • 4. Introduce basic structure of an HTML

  • 5. Discuss the two types of tags

  • 6. 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:

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

1. What is the title of A very simple web page?

  • A. Example One

  • B. A very simple web page.

  • C. Page1.html

2. Among the selection below what is the possible file name of A very simple
2.
2.

Among the selection below what is the possible file name of A very simple web page?

2. Among the selection below what is the possible file name of A very simple
2. Among the selection below what is the possible file name of A very simple
  • A. Example One

  • B. A very simple web page.

  • C. Page1.html

    • 3. What is the content of A very simple web page?

      • A. Example One

      • B. A very simple web page.

      • C. Page1.html

        • 4. What do you find between <body> </body>?

          • A. The title of the page.

          • B. The content of the page.

  • C. The file name.

5.

Among the section of html document, where does the title located?

  • A. Head Section

  • B. Body Section

  • C. 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.