Too Truthful Boards Tagboard Domain Information About Me Blog Visitor Content map of GH site

welcome

Welcome to Too Truthful, a domain that is lovingly managed by Elle. She 'tries' to update it as often as possible, but often doesn't come close to what she'd like. Here you can find personal  blips from her everyday life, thoughts, and feelings, and a wide variety of content for you to create your own website. Enjoy!

webmisstress

The girl behind the screen's name is Eleanor, but everyone calls her Elle. She's a 17 year old senior in the USA. Blinks with brown eyes and styles short  brown hair. Loves her boyfriend <3, listening to music, going running, make up, grammar, lemonade, the Twilight and Harry Potter series, drawing, and piano. Despises stress, change, headaches, shared drinks, reality tv,  storms, and scary movies. More?

family

 

friends

currently

» Feeling: Under the weather

» Eating: Nothing.

» Drinking: Energy Drink

» Music:  Friday Night, Lily Allen

» AIM: Signed Off

recent reads

» Eclipse by Stephanie Meyer

» Rocket Boys by Homer Hickam

» Isabella Moon by Laura Benedict

» The Last Embrace by Denise Hamilton

» Ella Enchanted by Gail Carson Levine

More?

last played

» Love Remains the Same, Gavin Rossdale

» Love So Alike, Anne Dudley

» American Boy, Estelle

» Digital Love, Daft Punk

» LDN, Lily Allen

More?

statistics

» Layout Design: Elle

» Best Viewed In: Mozilla Firefox

» Version: Eleven

» Running Since: Nov. 24th, 2005

All work, graphics, code, etc. are copyright Elle of Too-Truthful.com unless otherwise stated. Questions and comments can be directed here. Credits are located on this designated page. Thank you!

personal

 e l e a n o r

 

 

Background Codes

There are many ways of spiffing up the background of your site! Each way has it's own difficulty and understanding, and it is up to you to choose your preference.

HTML Background Color Code

To make a color the background of your website, you need to make sure you've started off with the body of the HTML document and then use the bgcolor tag.

    <body bgcolor= orange>

If you are looking for a specific color in between orange and red and would not be able to find it using words, look it up on a HTML color code. An easy to use one is at www.html-color-codes.com.

    <body bgcolor= #FF6600>

HTML Background Image Code

To create a background that contains an image, you still need to make sure you are starting within the body of the HTML document and use the background tag.

    <body background= http://www.too-truthful.com/ashleebg.png>

This tag creates a background of that image repeating itself over and over across the webpage.

CSS Background Color and Image Codes

CSS gets a bit more complicated, but once you learn it, it's so much faster and saves space. With CSS, you need to use the code within the head tag of the web page, and then within the style tag within that. Look at the example below.

    <head>

    <style>

    body { background-color: black;          }

    { background-image: url (http://www.too-truthful.com/ashleebg.png); 

      background-repeat: no-repeat; }

    </style>

    </head>

What this code tells us is that the code starts in the head of the web document, within the style tag, and within the body of the HTML page. It declares the background color as black (although you can also use color codes too). It then says that the background image is the Ashlee Background and it does not repeat. And yes, you can declare a page to have a background color and a background image. Sometimes this is nice because if the image is broken or for some reason does not load, a color can make the page look a bit nicer.

CSS is a harder way to code, but will definitely pay off if you learn how to use style sheets in the future. I hope to get a tutorial up for that soon! :)