Results 1 to 10 of 10

Thread: Yay for me.

  1. #1
    Join Date
    May 2005
    Location
    united kingdom
    Posts
    8,084
    Tokens
    595

    Latest Awards:

    Default Yay for me.

    I learned the basics of CSS and created this:

    I just mess around to teach myself

    Code:
    <head>
    <STYLE TYPE="text/css">
    <!-- 
    H1.first {Font-family: Small Fonts; Font-Size: 7pt; color:#FFFFFF}
    H1.second {font-family: Arial; font-size:7pt; color:#FF00FF}
    A:link {font-family: Small Fonts; Font-Size: 7pt; color:#FFFFFF; text-decoration:blink}
    a:visited {font-family: Small Fonts; Font-size: 7pt; Color:#FF00FF; tect-decoration:underline}
    Body {background-color:#000000;}
    -->
    </style>
    </head>
    <body>
    
    <a href="http://www.habboxforum.com">Test K</a>
    <h1 class="first">HAiiii</h1><br>
    <h1 class="second">HAIII</h1><br>
    </body>

    drink up this bottle of yeah
    and P A I N T your body on me


  2. #2
    Join Date
    Feb 2005
    Location
    Leicestershire / Sheffield
    Posts
    685
    Tokens
    0

    Default

    Nice, well done

    Im not that good with CSS, i think i might learn it in the future.

  3. #3
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    its not that hard to learn

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  4. #4
    Join Date
    May 2005
    Location
    united kingdom
    Posts
    8,084
    Tokens
    595

    Latest Awards:

    Default

    Yes I know but I am proud with myself because it's a new language I know

    drink up this bottle of yeah
    and P A I N T your body on me


  5. #5
    Join Date
    Jun 2004
    Location
    Northern Ireland
    Posts
    7,729
    Tokens
    0

    Latest Awards:

    Default

    Nice one!

  6. #6
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    should try making a layout now (dont flame me i know you need more then css to make a layout)

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  7. #7
    Join Date
    Jan 2006
    Location
    Manchester, UK
    Posts
    233
    Tokens
    0

    Default

    Quote Originally Posted by Pro-Soccer View Post
    should try making a layout now (dont flame me i know you need more then css to make a layout)
    You don't exactly need much to make the most basic layout.

    HTML Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>The Most Basic CSS Layout - Oracle:</title>
    <style type="text/css">
    <!--
    .container {
     width: 800px;
     border: 1px solid #000;
     margin-left: auto;
     margin-right: auto;
     margin-top: 5px;
    }
    .header {
     width: 800px;
     color: yourcolorhere;
     border-bottom: 1px solid #000;
    }
    .navigation {
     width: 780px;
     padding-left: 20px;
     border-bottom: 1px solid #000;
    }
    .content {
     width: 760px;
     padding-left: 20px;
     padding-right: 20px;
     height: 100%;
    }
    -->
    </style>
    </head>
    <body>
    <div class="container">
     <div class="header"><h1>IMAGE HERE</h1>
     
      </div>
       
       <div class="navigation">Home  About  Portfolio  Contact
       
       </div>
       
      <div class="content"><p>Add Text</p>
        
     </div>
     
    </div>
    </body>
    </html>
    It has absolutely no colour and no images, just turd use of CSS without hacks etc as it's just an example ;D
    Last edited by Oracle:; 24-08-2006 at 11:30 AM.

  8. #8
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    Heres Css Thats Used On My Hosting Site:
    HTML Code:
    body	{
    	margin: 24px 0px 24px 0px ;
    	padding: 0px;
    	background-color: #CCCCCC;
    }
    
    .border {
    	border: 1px solid #BBBBBB;
    }
    
    .border-a {
    	border: 1px solid #BBBBBB;
    	background-color: #EEEEEE;
    }
    
    /* Text */
    
    .main	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #333333;
    	line-height: 16px;
    }
    .main a:link	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .main a:visited 	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .main a:hover 	{
    	text-decoration: none;
    	color: #0000FF;
    }
    
    .lighter	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #666666;
    	line-height: 16px;
    }
    .lighter a:link	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .lighter a:visited 	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .lighter a:hover 	{
    	text-decoration: none;
    	color: #0000FF;
    }
    
    .darker	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #222222;
    	line-height: 16px;
    	border: none;
    }
    .darker a:link	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .darker a:visited 	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    .darker a:hover 	{
    	text-decoration: none;
    	color: #0000FF;
    }
    
    .large	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 18px;
    	color: #333333;
    	font-weight:bold;
    	line-height: 22px;
    }
    
    .largewhite	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 18px;
    	color: #FFFFFF;
    	font-weight:bold;
    	line-height: 22px;
    }
    
    .medium	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #333333;
    	font-weight:bold;
    	line-height: 22px;
    }
    
    .mediumwhite	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #FFFFFF;
    	font-weight:bold;
    	line-height: 22px;
    }
    
    .small	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 10px;
    	color: #333333;
    }
    .small a:link	{
    	text-decoration: none;
    	color: #0000FF;
    }
    .small a:visited 	{
    	text-decoration: none;
    	color: #0000FF;
    }
    .small a:hover 	{
    	text-decoration: underline;
    	color: #0000FF;
    }
    
    .nav	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 10px;
    	color: #CCCCCC;
    }
    .nav a:link	{
    	text-decoration: none;
    	color: #666666;
    }
    .nav a:visited 	{
    	text-decoration: none;
    	color: #666666;
    }
    .nav a:hover 	{
    	text-decoration: none;
    	color: #333333;
    }
    
    .field	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 10px;
    	color: #333333;
    }
    
    .white	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 10px;
    	color: #FFFFFF;
    }
    .white a:link	{
    	text-decoration: none;
    	color: #FFFFFF;
    }
    .white a:visited 	{
    	text-decoration: none;
    	color: #FFFFFF;
    }
    .white a:hover 	{
    	text-decoration: none;
    	color: #999999;
    }
    
    .italic	{
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 11px;
    	color: #777777;
    	line-height: 16px;
    	font-style: italic;
    }

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  9. #9
    Join Date
    Feb 2006
    Location
    Coventry
    Posts
    2,096
    Tokens
    0

    Latest Awards:

    Default

    Code:
    <style type='text/css'>
    
    body {
    
    text-align: center;
    
    }
    
    .c1 {
    
    height: 700px;
    background: white;
    margin: auto;
    
    }
    </style>
    
    <div class='c1'>Bla</div>
    And there you have a useless piece of white centered crap.
    Last edited by Sygon.; 24-08-2006 at 12:16 PM.

  10. #10
    Join Date
    Mar 2006
    Location
    Scotland
    Posts
    1,012
    Tokens
    175

    Latest Awards:

    Default

    Lol Sygon. Well done Myke. Hope you learn CSS in more depth as CSS is the way to go


    You don't like me
    Chances are I don't like you.

Posting Permissions

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