70 likes | 244 Views
HTML. Hypertext Markup Language. What is HTML. A markup language use for creating web pages It is an instruction to a webpage on how it will look. TAGS. are the basic units or building blocks of an HTML file/code as they said. TAGS are enclose with angle brackets “<“ and “>” E.q . <html>.
E N D
HTML Hypertext Markup Language
What is HTML A markup language use for creating web pages It is an instruction to a webpage on how it will look Prepared by: Mark Wilson F. Nicdao
TAGS • are the basic units or building blocks of an HTML file/code as they said. • TAGS are enclose with angle brackets “<“ and “>” • E.q. <html> Prepared by: Mark Wilson F. Nicdao
Start TAGS • Tags that are usually in pairs of a start and end tags • Where you can put the attributes • E.q. <font color=‘black’> *start tag </font> *end tag Prepared by: Mark Wilson F. Nicdao
Attributes • Use to provide additional information about the tag; it is separated by an “=“ • E.q. <font face=‘tahoma’> Note: Color red = Attribute | Color Green = Value Prepared by: Mark Wilson F. Nicdao
Contents • Everything between the start tag and end tags are CONTENTS • E.q. <font size=‘5’>THE LEGEND OF ZELDA</font> Prepared by: Mark Wilson F. Nicdao
End Tag • A tag that ends a start tag. It has “/” as a sign of ending. • E.q. <center> Juan Dela Cruz </center> Prepared by: Mark Wilson F. Nicdao