Sweet_Misery
03-19-2006, 10:01 AM
I want to create challenge site and made my layout graphic, but have no clue how to code it and put it into my domain thing. Any help is appreciated!
|
View Full Version : Layout coding. Sweet_Misery 03-19-2006, 10:01 AM I want to create challenge site and made my layout graphic, but have no clue how to code it and put it into my domain thing. Any help is appreciated! J to the izzosh 03-19-2006, 03:17 PM It sounds like you're going to need to start from the beginning. Most websites are written in a type of code called the HyperText Markup Language (that's HTML). This language is used to describe all of the content on your page with tags that surround textual data. What's the page's title? Why it's the text surrounded by <title> and </title> tags. Where can you find the page's header information? Between the <head> and </head> tags, of course. What's that text between the <table> and </table> tags supposed to be? I'll give you one guess... Once you have your page's content described, you'll also need to tell the browser how to display it. For this you should use CSS (Cascading Style Sheets), a language designed exactly for that purpose. With it you can set the colour of your text, links, backgrounds, define background images, set the width and height of elements on your page, and even tell the browser exactly where those elements should be located on the page. You can get information on both HTML (http://www.lissaexplains.com/html.shtml) and CSS (http://www.lissaexplains.com/css.shtml) right here on Lissa's website (http://www.lissaexplains.com/index.shtml). The W3Schools website (http://www.w3schools.com/) is also a very (http://www.w3schools.com/html/html_intro.asp) good (http://www.w3schools.com/xhtml/xhtml_intro.asp) resource (http://www.w3schools.com/css/css_intro.asp). |