Home  >  Article  >  Web Front-end  >  Lesson01_01 HTML Basics_Basic Tutorial

Lesson01_01 HTML Basics_Basic Tutorial

WBOY
WBOYOriginal
2016-05-16 12:09:031204browse

The content of this course is as follows:

1. HTML language basics
2. Advanced HTML language
3. CSS (cascading style sheet)
4. JavaScript syntax
5. DOM Object Model Programming
6. Summary of script programming technology
6. Regular expression

Lesson1 learning content:

1. Understand some background knowledge of HTML
2. HTML’s global architecture tag
3. Format tag
4. Text label
5. Hyperlink tag
6. Image tag

Lesson01_01 HTML Basics


Example: Write the following code in Notepad:
www.Loncer.cn
Knowledge points:
1. HTML is the abbreviation of English HyperText Markup Language (Hypertext Markup Language)
2. What is not displayed in IE is the HTML tag, ending with ""
3. This kind of tag usually appears in pairs as above:
4. Paired tags are also called containers. Other tags can be nested within a pair of tags.
5. A single tag does not need a matching end tag and is called an empty tag, such as:
This kind of tag can only be used alone and cannot format text.
6. The content between the tag and the tag is called an "HTML element"
7. The label has attributes, and the format of the setting is: attribute name = attribute value. The attribute value can use English single quotes (), double quotes ("), or no quotes.
8. For an attribute with only two attributes, if you want to enable it, just write it in the tag.
9. It doesn’t matter if HTML and its attributes are case-sensitive.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn