Main
-Home
-About Me
-Contact
-FAQ
-Links
-Guestbook

Design+Coding
-Web Design
-HTML & CSS
-JavaScript HTML Editor

Neo-Related
-Hints and Tips
-Pet Pages
-Land of Sand Guild
-Lupe Zodiac
-Quizzes

HTML & CSS

Here is the HTML & CSS page. Here will be some of the most basic codes to help get you started. If you need anymore help (which I'm sure you will), please visit one of the HTML help sites listed below or on the Links page.

HTML and CSS Codes:

Text Effects: Bold:
  Italic:
  Underline:
  Strike:

Miscellaneous: Center:
  Break:
  Paragraph:

Background Image: html:
  css:

Background Color: html:
  css:

Background Music: html:
  css:

Font/Link Color: html:
  css:
#1 = color of links
#2 = color of body text

Text Link: html:
  css:

Image: html:
  css:
Nota Bene: This will allow you to place the image ANYWHERE on the page. It will overlap anything else on the page. Substitute the right values for the 0's in the code. Top = amount of pixels the image is moved from the top. Left = amount of pixels the images is moved from the left. Width = width of image. Height = height of image.

 

Bookmarks:

     Okay. I've had many people ask me how in the heck do I get a link to go to something on the same page. It is called a bookmark, anchor, or page anchor. Anyways, this is what you do if you want to make one. I'm gonna take you through the html and then give you an example. Html code starting now!:

<a name=Hello>Welcome</a>

     No more Html. This is what you do to make a book mark. So cool. You just created a bookmark by the name of 'Hello'. I assigned my bookmark to the word 'Welcome' since it is in between the bookmark tags. The </a> says the bookmark is ending after the word 'Welcome'. So great, you  made a bookmark for a word, but what do you do now? You assign it to something that you want to be the link to the bookmark. We are gonna use a text link. So this is what you do to make a line of text become a link to the bookmark. Html code starting NOW!:

<a href="#Hello">Click here</a>

     Neat, but what does it all mean? If you know any html at all, you know that the <a href> tag means you are going to make something link to something else. The '#Hello' thingy after the <a href=> is declaring what bookmark the link is going to. If you just type <a href="Hello"> then it won't work. All links going to bookmarks need a '#' sign before the bookmark name in the hyperlink tag. The words between <a href="#Hello"> & </a> (a.k.a. 'Click here') is what will appear for a person to click on to go to the bookmark. You can place the these tags in any way (i.e. so the link will take you to back up to the top, or so it will take you to the bottom). So here is what it could look like.

PREVIEW


Links to Helpful Pages:

MightySkunkLookup
Lissa Explains it All- HTML Help for Kids
Luv's Creations HTML Help Page
csshelp