TL;DR — CSS external stylesheet means that you upload all styling properties and values to a separate .css file. Then, you link the document to your website. Learn how to link CSS to HTML to boost website performance and to update CSS rules easily.
Contents
How to Link CSS to HTML: Main Tips
- CSS external stylesheet is a .css file with all CSS rules.
- You can link CSS to HTML by using the <link> element.
- After learning how to link a CSS file to HTML, you can style multiple pages and separate style from content.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
Styling Multiple HTML Pages
CSS external stylesheets refer to .css documents that contain CSS properties and values for the entire website.
Tip: .css files cannot contain HTML tags.
The following example shows how to link CSS to HTML by adding an external .css file into an HTML <head>
section:
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
Note: modifications and updates to the .css file will apply to the whole website. Linking HTML to CSS is the best option for easy website maintenance.
You have to use the <link> element to link HTML to CSS. The element itself is empty, but it contains three attributes:
rel
describes the relationship between the HTML document and a linked document.type
determines what type of data should be taken by an input element.href
points to a specific file that you're uploading.
Note: you can create a .css file with any text editor. The document must have the .css extension.
The example below illustrates how a .css file from the first external CSS example looks like:
Note: never leave a space between property value and unit. Write 10px, not 10 px.
How to Link CSS to HTML: Useful Tips
- CSS external stylesheet is the standard option for web design.
- Knowing how to link a CSS file to HTML lets you optimize code and create websites with a consistent style.
- Linking many external stylesheets to websites might increase website loading time.
- Use inline CSS for styling a single element, and internal CSS for one page.