Introduction to DW-HTML and dwhtml
I. What is HTML?
The full name of HTML is Hyper Text Markup Language ("Hypertext"A page can contain images, links, music, programs, and other non-text elements.
The essence of Web pages is the Super Text Markup Language. By using other Web technologies (such as scripting language, public gateway interface, and components), you can create powerful Web pages.
Therefore, HTML is the most basic component of Web, but HTML is not a programming language. It should be a markup language.
Ii. HTML and DW (Dreamweaver)
DW is a WYSIWYG web editor that combines web page creation and website management.
HTML is the most basic component of the Web. All Web editor is based on this.
DW is a webpage editor based on HTML hybrid (both design zone and code zone), like HomeSite is a webpage editor with pure code.
III. Basic HTML Structure
Html pages are composed of various tags, and their tags are a pair <>.
1
The above is the most basic structure of HTML. It is obvious that the title of the webpage is written in the third line, that is, in the header.
So what is written in the subject? The content of the webpage is written. For example, the sixth line indicates the text displayed on the page.
After careful observation, we will find that HTML statements appear in pairs, such as
<Xxx> indicates start, and </xxx> indicates end.
Now, let's talk about the header and the subject in detail.
1. head)
What can I define in addition to the title I saw earlier?
2. body)
What can the subject define? The following are commonly used:
Well, let's talk about the HTML content first. After all, this is DW, and I will explain it later when there are some important points about HTML in DW.