Wednesday 21 September 2011

Computing homework new

Computing Homework
Html: what does it stand for?
HTML Stands for Hyper Text Markup Language and is essential for any start of a webpage and it has to finish in </html> to complete the page.
Key terms:
<Title> this tell the computing what to show on the tab at the top of the page..
<p> this meanings a start or new paragraph coming in
<br> means line break, to separate the lines and creates space.
<h1> starts a new heading shows in bold.
<Strong> means bold, so it stands out.
All of these are example of what I learned in computing and more. Css goes in to more details about making a website and how to make it look visually impressive. It all gives me the chance to try new codes to see what will work best with each other. Some examples are;
       Change font family, colour, size
      Change body background colour
      Set a background image
      Use an image as the bullet point for your list elements
All of these and many more gives you more options and make it look impressive, but all this coding add up and can be very tricky to find one problem though thousands of pages of coding to stop this you make a style that it relates to for example
<link rel="stylesheet" type="text/css" href="style.css"/>
This tells the text in the body to relate to this and this command could have color:red; for example and all the text will appear red.

2 comments:

  1. Great summary - you could include an actual example of CSS as well

    ReplyDelete
  2. body
    {
    background-color:grey;
    }
    h1
    {
    font-size:36pt;
    }
    h2
    {
    color:red;
    }
    p
    {

    ReplyDelete