How to learn HTML.
With HTML, you create sections on a web page and give them names. Then you use a style sheet to tell the browser how to display the section. Then you put the contents into the section. The sections are called divs.
To start to learn, try this. You tube is your friend.
And this course as mentioned above.
Code:
http://www.blackhatworld.com/blackhat-seo/member-downloads/568827-get-become-web-developer-scratch-complete-course.html
1 Download an html template.
2. Download HTMLkit.
3. open the index page with HTMLkit
Change what you want, then look at the last change you made.
If it is ok, make another change. If you screwed up, use undo. Save often
First command to learn is
.
This is an ignore command, and anything you put in there will not displayed. When you want to remove something, use this command until you make sure you have done it right. Check the effect, and if you did it right then delete. IF everything went to hell, you probably took out an extra DIV.
In HTML. display instruction are placed in the CSS. Sections of the site are in <div></div> tags
Practice removing entire sections until you understand how divs work.
With these tools, and an HTML cheat sheet, you should be able to modify an HTML template within a week, if you try to learn and have any tech ability.
Each div will have a name, and the CSS will have a section in it that has the same name and sets up the styling for that section.
The HTML contains what is displayed on the page, the CSS contains how it is displayed.
It takes no longer to learn basic HTML than it does to really learn wordpress. If you validate your pages, you will learn faster. using this method, and the how to do websites link above, and you should be making template based sites in short order.
Don't let anybody put you down for using templates until you learn to code. The are probably using themes and WordPress anyway.
This will not turn you into a web developer,but you can build learn to build any IM site you want fairly fast, and you have control over everything.
Use firefox and the web developer toolbar, and look at the div order to id the sections you want to change, then search for this section in the HTML code.