Using Komodo Edit, and trying to link HTML/CSS Files

5.3k Views Asked by At

I'm completely new at HTML/CSS. I'm currently using a Mac and I don't know how to link HTML/CSS files in Komodo. Oddly enough, I cannot find anything online that explains how. Is there any one who can explain in DETAIL how to go about doing so?

1

There are 1 best solutions below

3
On BEST ANSWER

You link a CSS file with a <link> tag in the <head> of your HTML file:

<!DOCTYPE html>

<html>
  <head>
    <title>My Webpage</title>

    <link rel="stylesheet" type="text/css" href="style.css" />
  </head>

You can find more information from the HTML Dog: Applying CSS article.