htmlcsshyperlinkexternalkomodoedit

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


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?


Solution

  • 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.