I've downloaded CSS, now what...?
I downloaded the 30 trail of CSS so i can make a layout for myspace, or xanga, but i cant figure out how to-
*put a bunch of small icons into a layout
*get a picture and text
*Make a quote layout
*how to make the layout into an HTML so i can put it on the webpage
I've downloaded CSS, now what...?really this is how it is...
HTML coding creates the layout..it creates tables, text boxes, texts and every thing..every basic feature in a web page..
and CSS another code that is used to bring style to an HTML page..for example to change the color of text, the border styles of a table and so on..
I've downloaded CSS, now what...?CSS or cascading style sheets are simply a set of commands that control the formatting of the page they are applied to. They do not create the html. A basic html page could be created simply by opening a text editor, and typing <html></html>. Linking it to the css and adding to it are a bit more challenging. For a great overview of css and html, i'd suggest visiting w3schools.com. They've got some great tutorials.
I've downloaded CSS, now what...?Hi, CSS is a stylesheet that the webpage follows. Example below is a style for a table.
<style>
<!--
table { color: #FFFFFF;
border: 1px dotted #0000FF;
background-color: #336699
}
-->
</style>
If you place that code in the webpage, Every table in the webpage will have a dotted blue border and a background color of dark blue. It will not make a table for you, it will only put a style on the table that you will create.
That means you have to create the html layout yourself, add pictures and text.
More Related Questions and Answers ...
The Myspace information post by website user , myspace-codes.com.cn not guarantee correctness.
