Although you don't have to learn HTML to creat Web pages in Dreamweaver, having a basic concept of how it works does come in handy.
Here's a short, crash course to get you started.
Contrary to popular belief, HTML isn’t a programming language.
HTML a markup language: That is, HTML is designed to mark up a page, or you could say, provide instructions for how a Web page should look when displayed in a web browser (what is a web browser?).
HTML is written by using tags, which serve as markup instructions that tell a Web browser where to place all of the images, text, and other things on the page, and what fonts, colors, and other formatting to use. For example, to apply italic formatting to text, you insert the HTML tag <em>, which stands for emphasis, where you want the italics to begin and end. (If you use a program, like Adobe Dreamweaver, when you click on the italics icon, Dreamweaver inserts the tag for you)
Most tags in HTML include both an opening tag and a close tag. Open tags look like this <open> and close tags look like this </close>. You'll never use tags for open and close, but you can remember that the close tag is indicated by the forward slash / in the second of any pair of tags. (Open and close tags usually match, at least mostly), ,.
The following markup would make the title of my latest Dreamweaver For Dummies book, appear in italics:
<em>Dreamweaver CS5 For Dummies.</em>
XHTML, a stricter version of HTML, is the recommended language to use to meet the highest standards of Web design today. Among the differences between the two languages, XHTML must be written in lowercase letters; in HTML, it doesn’t matter whether tags are upper or lowercase. Similarly, XHTML requires that all tags include a close tag. Rest assured all templates and code examples in this book follow the XHTML standard.

Use the Split view option in Dreamweaver to display the page design and the code behind the page.
If you select something in Design view, like the headline shown in this figure, the same text is highlighted in Code view, enabling you to easily find your place in the code.
Dreamweaver offers three view options:
* Code: In Code view, you see only the XHTML and other code.
* Design: In Design view, you see only the page as it should be displayed in a Web browser.
* Split: In Split view, the page is dived so you can see the code in one part of the workspace and a view of the how the page should be displayed in a Web browser in the other part.
If at first glance you think that XHTML code looks like hieroglyphics, don’t give up too quickly. With just a little training, you can start to recognize at least some common tags, like the <h1> tag (heading 1 tag) that was used to format the headline on the page shown in this figure.
A few points to help you better understand XHTML:
<h1>This is a headline</h1>
<a href="http://www.digitalfamily.com">This is a link to DigitalFamily.com</a>
At its heart, XHTML is just text, and believe it or not, you can write XHTML in a plain-text editor as simple as Notepad, SimpleText, or TextEdit. If you ever try it, however, you have to be careful to type all the code perfectly because there is no room for error or typos in XHTML.
After writing code yourself, even to create a simple page, you’re sure to quickly appreciate how well Dreamweaver writes the HTML code for you.
...