Friday, November 6, 2015

Starting from scratch HTML and CSS

HTML video

1. Text mate
2.the homepage
3.index.hyml
4.<html>
5. <head> and <body>
6. all of the info of the webpage
7.rendering of the visible webpage
8.Address, body, image, head, cite
9.found out of specific location
10.<br>



CSS video
  1. Cascading Style Sheet
  2. Style rules directly to each html element
    Advantage: highly targeted
    Disadvantage: incredibly inefficient
  3. Consolidate all your styles into the head section of your html document
    Advantage: Allows you to add a single rule to apply to html file
    Disadvantage: Have to duplicate to each html file you make
  4. Allows you to have a single CSS file in multiple html documents
    Advantage: Can be used in multiple html files at once
    Disadvantage: Can be long and confusing to work with
  5. Element within a CSS document
  6. Color
  7. Background color, padding, color, etc...
  8. Changes the color of the hyperlink
  9. Link, active and hover
  10. Background, clear and color

No comments:

Post a Comment