I'm a WordPress n00b. I can't seem to get simple CSS imported into my page.
This is my that I've tried:
index.php
<link href="style.css" rel="stylesheet" type="text/css">
style.css
/* External */
@import: url('http://fonts.googleapis.com/css?family=Varela');
@import: url('https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css');
/* Internal */
@import: url('css/bootstrap.css');
@import: url('css/custom-styles.css');
I've also tried:
index.php:
<link href="<?php bloginfo('stylesheet_url'); ?>" rel="stylesheet" type="text/css">
and this just to be double sure:
<link href="<?php bloginfo('style.css'); ?>" rel="stylesheet" type="text/css">
I've done researching but I can't find anything other than what I've tried above. So I appologize if this is a repeat.
EDIT:
This doesn't work within WordPress within the index.php:
<link href="style.css" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Varela" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link href="css/custom-styles.css" rel="stylesheet" type="text/css">