iGuest 3 Report post Posted January 14, 2005 How to combine HTMl with CSS? Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 14, 2005 Im not sure what you realy want, but heres a few examples. Use the following code to link a css styleshet to an html page. Replace *styleshetpath* with a path to the stylesheet itself (can be a relative or a full path, ex "http://forums.xisto.com/no_longer_exists/" or "style.css").Make sure it goes anywhere between <head> & </head> tags. <link rel="stylesheet" href=*sylesheetpath* type="text/css"/> ex. <html> <head> <title>My first CSS Linked page</title> <link rel="stylesheet" href="http://forums.xisto.com/no_longer_exists/ type="text/css"/> </head> My fist CSS Web Page <body> </head> Use the following code to create a css style inside an html page. Make sure it goes anywhere between <head> & </head> tags. <style type="text/css"> //css code goes here </style> ex. <html> <head> <title>My first CSS page</title> <style type="text/css"> body { font-family: Georgia, "Times New Roman", Times, serif; color: yellow; background-color: #000000 } h1 { font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif } a:link { color: blue } a:visited { color: purple } </style> </head> My fist CSS Web Page <body> </head> Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 14, 2005 don't lie,i know u know...He's trying to get post counts only.Admin,please ban him! Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 If you want to learn how to use CSS, I suggest you read tutorials on the internet. They explain everything and how you can use CSS etc. Search on google.com for "CSS tutorial".skyglow1 Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 don't lie,i know u know...He's trying to get post counts only.Admin,please ban him!Im trying to help the guy out and not get post counts Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 don't lie,i know u know...He's trying to get post counts only.Admin,please ban him!Im trying to help the guy out and not get post counts No hes talking abou the discussion starter not you. ssfei81 made a couple of discussions in this forum which seem weird.skyglow1 Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 exactly Share this post Link to post Share on other sites
iGuest 3 Report post Posted January 15, 2005 o. alright i got ya, sry about that Share this post Link to post Share on other sites