comp sci

Subdecks (2)

Cards (31)

  • Any code enclosed within the <html> tags is interpreted as HTML
  • <body> defines the content in the main browser content area
  • An anchor tag creates a hyperlink
  • <head> defines the browser tab or window heading area
  • <title> defines the text that appears with the tab or window heading area
  • CSS stands for Cascading Style Sheets
  • <h1>, <h2>, <h3> are all heading styles in decreasing sizes
  • <p> is a paragraph separated with a line space above and below
  • <img> tag is used to display an image on a webpage with the parameters src, width and height: <img src= "image.jpg" width= "100" height= "100">
  • <a> tag is used to create a link to a website, blog, or other online resource. It has a location parameter: <a href=”http://www.example.com/>
  • <ol> defines an ordered list
  • <ul> defines an unordered list
  • <li> is used inside both ordered and unordered lists to define individual items within them.