Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Results 1 to 6 of 6
  1. #1
    Join Date
    Feb 2005
    Location
    Scotland
    Posts
    1,963
    Tokens
    0

    Latest Awards:

    Default small question bout html and CSS

    can any1 please explain the difference of these two please,

    and how do you use CSS in a HTML document?
    simple question which i need 2 understand for my project. thanx
    love this video
    http://www.youtube.com/watch?v=RklC3m73RP0
    "leeeeeroy jeeeeeennnnnkinssssssssssssss"
    ppl traded
    crimson ---- jordam
    Rauhl ----- ark alost
    cwmbran ------ harl2015
    threatened - chimptears

  2. #2
    Join Date
    Aug 2005
    Location
    Webdesign Section
    Posts
    1,032
    Tokens
    0

    Latest Awards:

    Default

    Ok html, hyper text markup language is the "default" of making webpages
    ... i think and css is lke for styles, scroll bars and maybe is just a lil dif from html, not to sure though i dont use it

  3. #3
    Join Date
    Dec 2004
    Location
    Essex, UK
    Posts
    3,285
    Tokens
    0

    Latest Awards:

    Default

    Anyone that uses Dreamweaver will be using CSS, as a lot of it is run from it. The way you use CSS is with the <style> tag within the <head> tag, just read the tutorial in Website Tutorials for more information.

    Then once you've made a style you can do <div id="style">Styled Text</div>



    i used to be NintendoNews. visit my blog or add me on twitter.
    need help with vista? i am a microsoft certified technology specialist in configuring windows vista and connected home integrator.. pm me for help!


    "I am the way, the truth, and the life. No one comes to the Father except through me"
    John 14:6 (NIV)


  4. #4
    Join Date
    Jun 2005
    Posts
    4,795
    Tokens
    0

    Latest Awards:

    Default

    CSS stands for Cascading Style Sheet. Basicly insted of useing old outdated tags e.g. <font> is uses syle="nameofstyle" inside the tag. Also I do NOT recomend you add the CSS to the top of the page I recomend you make a CSS document and just refer to it inside your HTML document.

  5. #5
    Join Date
    Jun 2005
    Location
    Manchester
    Posts
    3,187
    Tokens
    0

    Latest Awards:

    Default

    Basically CSS ( Cascading Style Sheets ) is used to make your page more easier to edit and make a it browser friendly.

    You can make your code less and quicker load time by linking your <Head> tag to a External Stylesheet like this:

    HTML Code:
    <LINK href="thestylesheet name.css" rel="stylesheet" type="text/css">
    And in this you can use newer tags in which browsers are more acustomed to and that is a lot easier to use such as:

    HTML Code:
    body 
    { background: #000000; 
    }
    
    And also for IE Scrollbar functions:
    
    {
    scrollbar-face-color : #000000; 
    scrollbar-highlight-color : #000000; 
    scrollbar-3dlight-color : #000000; 
    scrollbar-shadow-color : #000000; 
    scrollbar-darkshadow-color : #000000;
    scrollbar-track-color : #000000; 
    scrollbar-arrow-color : #000000; 
    }

  6. #6
    Join Date
    Aug 2004
    Location
    bristol
    Posts
    3,799
    Tokens
    0

    Latest Awards:

    Default

    HTML is the code you code websites in, CSS is just something which you can use to style your page.
    Some people think that using CSS is better because if you wanted to change something on your site, for example the background colour you would only need to change your CSS document - and not every page.

    Someone mentioned the <div> tag, it can be used similar to a table. E.g.

    Done with <table>:
    HTML Code:
     <table width="100" border="1" cellspacing="0" cellpadding="0">
       <tr>
         <td>Hi</td>
       </tr>
     </table>
    Done with CSS:

    Code:
    #box {
         float: left;
         width: 100px;
         border: 1px #000 solid}
    HTML Code:
    <div id="box">Hi</div>
    kinda quit.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •