Posts

lab 3

Image
  C:\Users\uthm\Documents\mypage2.html 1.Explain the html code above. <html> tells the browser that this is an HTML document. <head> element is a container for all the head elements. <title>this title require in html  document. <body>represent the body of document. <h1>define as most important heading. <p>dine as the paragraph. <br> is an empty tag which means that it has no end tag. 2.Explain about the two types of HTML Tags. Paired Tags A tag is said to be a paired tag if the text is placed between a tag and its companion tag. In paired tags, the first tag is referred to as Opening Tag and the second tag is referred to as Closing Tag. Unpaired Tags: An unpaired tag does not have a companion tag or closing tag. Unpaired tags are also known as Singular or Stand-Alone Tags. 3.give some example of html tags on both types of html tags. paired tags: <i>This text is in italics. </I> Here <i...

lab 2

Image
HTML CODE HTML was first created by Tim Berners-Lee, Robert Cailliau, and others starting in 1989. It stands for Hyper Text Markup Language. Hypertext means that the document contains links that allow the reader to jump to other places in the document or to another document altogether. The latest version is known as HTML5. A Markup Language is a way that computers speak to each other to control how text is processed and presented. To do this HTML uses two things: tags and attributes. The <!DOCTYPE html> declaration defines this document to be HTML5 1.The <html> element is the root element of an HTML page. 2.The <head> element contains meta information about the document. 3.The <title> element specifies a title for the document. 4.The <body> element contains the visible page content. 5.The <h1> element defines a large heading. 6.The <p> element defines a paragraph. 7.<h1> defines the most important heading. <h6> ...