I have recently started to learn WordPress and after learning how to use it at basic level I immediately started to learn how to develop templates since this is what interested me from the start when I started to learn it.
I am reading WordPress 3 Complete and at Chapter 6 the book guides you to develop your first basic theme. The only problem is that it seems that my theme is not taking the style sheet. I have tried to use:
<link rel="stylesheet" type="text/css" href="style.css"/>
and
<style type="text/css">@import url("style.css");</style>
None of them seem to get the style on the page. What should I do?
