Search code examples
htmlbootstrap-4href

How to reference two stylesheets


I'm new to HTML and I'm trying to href 2 things. I don't get an error, but my style.css sheet doesn't work. Any ideas?

 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css; style.css">

Solution

  • Do them separately:

    <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
    <link rel="stylesheet" type="text/css" href="style.css"/>