HTML (HyperText Markup Language): Hypertext markup language, a plain text-type language
-- Use markers with angle brackets to identify the contents in the web page one by one
The markup language used to design a web page is written in that language, and is interpreted and executed by the browser with the suffix of .html or .htmOn HTML pages, program segments written in scripting languages can be nested, such as: VBScript, JavaScript
2. Basic html syntax The symbols used by HTML to describe functions are called tags, such as <p>, <h1>, etc.--The marker must be enclosed in angle brackets when used
--There are closed type marks and non-closed type marks
Some text here.
<h1>Some text here.</h1>
Non-closed type mark, also known as short mark, or single mark-- <tag/> or <tag/>
Cannot contain contentNormal text one<br /> Normal text two
Normal text three<br> Normal text four
-------------The effect is as follows: (<br>or</br> means a new line)
The above is the full content of the HTM beginner notes (must read for beginners) brought to you by the editor. I hope everyone will support VeVb Wulin.com~
Original address: http://www.cnblogs.com/LJY0596/archive/2016/06/28/5625373.html