Pages

Sunday 2 February 2014

4 REVIEW-1


  1. HTML and CSS are the languages we use to create web pages.
  2. Web servers store and serve Web pages, which are created from HTML and CSS.
  3. Browsers retrieve pages and render their content based on the HTML and CSS.
  4. HTML is an abbreviation for Hyper Text Markup Language and is used to structure your web page.
  5. CSS is an abbreviation for Cascading Style Sheets, and is used to control the presentation of your HTML.
  6. Using HTML we mark up content with tags to provide structure. We call matching tags, and their enclosed content, elements.
  7. An element is composed of three parts: an opening tag, content and a closing tag.
  8. There are a few elements, like <img>, that are an exception to this rule.
  9. Opening tags can have attributes. We have seen a couple: type and align.
  10. Closing tags have a “/” after the left angle bracket, in front of the tag name to distinguish them as closing tags.
  11. Your pages should always have an <html> element along with a <head> element and a <body> element.
  12. Information about the Web page goes into the <head> element.
  13. What you put into the <body> element is what you see in the browser.
  14. Most white space (tabs, returns, spaces) are ignored by the browser, but you can use these to make your HTML more readable (to you).
  15. CSS can be added to an HTML Web page by putting the CSS rules inside the <style> element. The <style> element should always be inside the <head> element.
  16. You specify the style characteristics of the elements in your HTML using CSS.

No comments:

Post a Comment

Popular Posts