HyperText Markup Language (HTML) defines what the different pieces of a web page are. The Cascading Style Sheets (CSS) coding language describes what those pieces should look like. A CSS file can be added to HTML as an external style sheet, CSS included in a separate file from the HTML, or an internal style sheet, CSS included within the HTML file. Learn how to add a CSS file to HTML in order to customize your website design.
Steps
Method 1
Method 1 of 2:
Add an External Style Sheet to HTML
-
Create the CSS file. Prepare and save your CSS file with the ".css" file type.
-
Upload your CSS file to your website.Advertisement
-
Copy the URL of your CSS file. The URL might look like www.yoursite.com/stylesheet.css .
- It's good form to remove the main domain name from the link (URL). Therefore a URL of "http://mysite.com/css/default.css" would be shortened to "/css/default.css". You must include that leading slash ("/"). This is called a relative path.
-
Add a link to the file. Find the </head> tag in your HTML file, and create an empty line just above the tag. Add <LINK rel=stylesheet type="text/css" href="www.yoursite.com/stylesheet.css"> to that empty line, changing "www.your..." to the link to your CSS file.
-
Save your HTML file, and upload it to your website.
-
Verify that everything on your site looks how it is supposed to look. If it doesn't, you may need to go back and look for any corrections or adjustments you need to make.Advertisement
Method 2
Method 2 of 2:
Add an Internal Style Sheet to HTML
-
1Create the <style> tag. In your HTML file, find the </head> tag. Add a few extra lines above it and type the following:
<
STYLE
type
=
"text/css"
>
</
STYLE
>
-
Add all your CSS between those two tags you just added.
-
Save your HTML file (as HTML).
-
Verify that your web page looks like it is supposed to look. Make changes as necessary if it doesn't.Advertisement
Community Q&A
Search
-
QuestionHow do I link CSS with HTML in mobile?The coding catCommunity AnswerYou link CSS the same way for all operating systems (mobile, desktop, etc.).
-
QuestionWhat about the browser?CageyCatTop AnswererThe CSS file is written on your computer, in the folder with your website files, and with a css file extension. This css file is linked into each webpage file you create. Each browser reads the HTML of your page(s) and 'renders' the page to your specifications, to the best of the browser's ability. Browsers can render differently sometimes, so do check your pages in the top browsers.
Ask a Question
200 characters left
Include your email address to get a message when this question is answered.
Submit
Advertisement
Tips
- Always check your website's appearance in different web browsers and on different computer systems. Some browsers internet CSS a bit differently, even between the same browser's Mac and Windows editions. If your website looks different in different browsers, particularly in how certain objects like lists are spaced, the issue is the browser defaults. Find a master style sheet to add to the beginning of your CSS to override all browser defaults, so your settings aren't adding to anything that the browser already sets up.Thanks
- If you have the option, use an external style sheet. Doing so will let you adjust the site appearance by changing the code in the one named file, rather than having to change the CSS on every page in your site.Thanks
- If your website isn't responding to your CSS like expected, double-check all your code to make sure you didn't forget details. Particularly pay attention to the semicolons (";") and closing arrow brackets ("}"). It's not unusual to miss one in your CSS.Thanks
Advertisement
Warnings
- Don't use "inline" CSS, CSS that's included in the HTML tag. (For example: the "align='center'" is inline CSS.) It's outdated, bad syntax, and difficult to adjust when you need to update the website later.Thanks
Advertisement
About this article
Thanks to all authors for creating a page that has been read 119,220 times.
Advertisement