Webmaster Forum
Go Back   Webmaster Forums UK SEO SEM Webmaster Community Forum - UKWW > General > General Webmaster Talk
Register FAQ Members List Downloads Calendar Today's Posts Webmaster Resources Webmaster Blogs

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-26-2007, 09:22 PM
Member
 
Join Date: Mar 2007
Posts: 60
iTrader: 0 / 0%
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
ForumJoiner is on a distinguished road
Default How to link a CSS file to a HTML file?

We want to apply the CSS look, as defined in the example.css file, to the content from the example.htm file. In the example.htm file we add, in the header section, the following:
Code:
<head>
	<link 
		rel = "stylesheet" 
		type = "text/css" 
		href = "example.css" 
	/>
<head>

While there are others way to apply CSS instructions to a particular element from the HTML file, the purpose of CSS is to isolate the look from the content. That's why we'll use an external CSS file.


It’s very important to know how to test if the CSS file is applied to the HTML file. For this, we’ll make a HTML file, called example.htm
Code:
<html>
	<head>
		<link 
			Rel = "stylesheet" 
			Type = "text/css" 
			Href = "example.css" 
		/>
	<head>
	<body>
		This is a blue text.
	</body>
</html>

The example.css file will set to blue the color of all the text from the body section.

Code:
body
{
	color : blue;
}
At first, we’ll not put the example.css in the same folder as example.htm. If we open example.htm, using a browser, the color of the text will be black (or whatever color you set by default for your browser). We’ll not receive an error message, saying that example.css is missing, but we’ll not see the blue color.


When we copy the example.css file in the same folder as example.htm, and we’ll open again example.htm, the color of the text “This is a blue text” will be blue, indicating the effect of the CSS file over the content of the HTML file.


You can download below a zip file containing both files.
Digg this Post!Add Post to del.icio.usStumble this Post!Wong this Post!
Reply With Quote
Reply

Bookmarks

Webmaster Resources
UK WW SEO Tools
Find UK Hosts
 
The Forum Rules
Forum Rules - MUST READ
 
Site Of the Month
BizzFace
Nominate site of the month
 
Tag Cloud
adf apple iphone apple iphone 3g article writer brand new contents data entry dj mixer edible oil electronics events in india free social hosting free space google google analytical tool graphics design iphone iphones joomla laptops link exchange motorola rokr e6 mysql nokia partners phones phpmyadmin poineer programming research social web space wanted uk web development web hosting webmasters web space for free

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


Similar Threads
Thread Thread Starter Forum Replies Last Post
.htaccess file lala General Search Engine Discussions 4 10-16-2007 11:39 PM
Converting a file? SoftwareMS Business Forum 8 05-03-2007 08:04 AM
.htaccess file lala General Search Engine Discussions 30 03-04-2007 04:42 PM
Linking to an external .txt file clau General Webmaster Talk 4 08-10-2005 10:44 AM
Missing File aircool5 iG Shop 1 08-18-2004 03:15 AM


All times are GMT. The time now is 02:26 PM.

UK Webmaster World Forums - Internet marketing, web development, domain names, SEO contest and discussuons.
Subscribe to our feeds   Subscribe to our feeds

Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151