tammerg / newPortfolio

0 stars 0 forks source link

Linking to bootstrap #3

Open dannyvassallo opened 8 years ago

dannyvassallo commented 8 years ago

your head is this

<head>
  <title>Tammer Galal</title>
  <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
  <link rel="stylesheet" type="text/css" href="style/style.css">
  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.6/darkly/bootstrap.css">
</head>

it should be this:

<head>
  <title>Tammer Galal</title>
  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/3.3.6/darkly/bootstrap.css">
  <link rel="stylesheet" type="text/css" href="style/style.css">
</head>

if im not mistaken, bootswatch is a recompiled version of bootstrap with custom styles. the theme has all of the bootstrap components included. check me on this one though.

dannyvassallo commented 8 years ago

@tammerg