Friday, November 13, 2015

HTML Tags I've Learned So Far


  • <html></html> defines an HTML document, goes at the beginning and end of each document
  • <head></head> defines a document's information
  • <title></title> defines a document's title
  • <body></body> defines the document's main parts
  • <h1></h1> defines a heading (can go through to h8)
  • <p></p> defines the beginning and end of a paragraph
  • <br></br> defines a line break
  • <p align=right> designates that the text will be aligned to the right
  • <p align=center> designates that the text will be aligned in the center
  • <em></em> shows emphasis, usually translated into italics
  • <strong></strong> shows strong emphasis, usually translated into bold text
  • <cite></cite> used for book titles, etc., usually italics
  • <b></b> designates bold text
  • <i></i> designates italicized text

No comments:

Post a Comment