If you haven't already, I would strongly recommend reading the introductory material in the wiki:
After this, go through the material on the practical aspects of running an OS-dev project:
Then you should read up on the core technologies for the platform, assuming (given what you have said already) that you are targeting the PC architecture, this would be:
I strongly suggest that you read through the first two sets of pages in detail, and preferably at least go through the third part briefly, before doing any actual development.
While this is a lot of reading, it simply reflects the due diligence that any OS-devver needs to go through in order to get anywhere. OS development, even as a simple project, is not amenable to the Stack Overflow cut-and-paste model of software development; you really need to understand a fair amount of the concepts and principles before writing any code, and the examples given in tutorials and forum posts generally are exactly that. Copying an existing code snippet without at least a basic idea of what it is doing simply won't do. While learning itself is an iterative process - you learn one thing, try it out, see what worked and what didn't, read some more, etc. - in this case a basic foundation is needed at the start. Without a solid understanding of at least some of the core ideas before starting, you simply can't get very far in OS dev.
Hopefully, this won't scare you off; it isn't nearly as bad as it sounds. It just takes a lot of patience and a bit of effort, a little at a time.