Jump to content
xisto Community
Sign in to follow this  
iGuest

HTML

Recommended Posts

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

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

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.