This is the first day of my participation in Gwen Challenge

The basic format of HTML

<! Doctype html><html>
      <head>
           <title>The title</title>
            <meta charset="utf-8">(The notepad is GB2312)<body>
       
         </body>
      </head>
   </html>
Copy the code

HTML tags

0. Div tags

 <div>

 </div>
Copy the code

Div is a closed tag,

1. Hyperlink tags

     <a href="Address of resource to access" target="_self defaults this window to override display /_blank new window display/frame name - specified frame display" title="Warning message"></a> Email hyperlink: Clicking on an email hyperlink automatically opens the email delivery software on your computer and fills it with the recipient's address (foxmail)"mailto:[email protected]"></a> Anchor link (bookmark link) : Access link <a href="url#name"></a> Define anchor points:<a name="Anchor"></a>
Copy the code

2. < br > a line break

3.  The blank space

5.
Set this page to jump to another interface or page 10 seconds later

6. The front three layers of the website:

(x) HTML structure Layer HTML structure CSS presentation layer determines the style of THE HTML javascript action layer determines how the HTML interacts

7. Basic syntax: < tag name attribute =” value “attribute =” value” ></ tag name >

For example:

<font color="red" size="7" face=" li "> </font>Copy the code

8. Tag attributes and tags can not be separated. To talk about attributes, you must say which tag attributes, not attributes alone

<font color="" face=" size="" ></font>

   <p align=""></p>
Copy the code

9. Comments in HTML

10. Specification:

<img /> <input /> <img /> <input /> <img /> <input /> <img /> <img /> <input /> <img /> <img /> <input /Copy the code

11. Text markers

<font color=" color "face=" font name" size="1-7 default size 3"></font>Copy the code

12. The text tag Bold < b > < / b > < strong > < / strong > slope < I > < / I > < em > < / em > _ < u > < / u > strikethrough < del > < del > address < address > < address > superscript < sup > < / sup > subscript < sub > < / sub >

13. Paragraph markers: a p equals a carriage return newline, and /p equals a carriage return newline

<p align=" left /center/right"></p>Copy the code

14. Horizontal lines:

<hr width=" width "size=" width" color=" color "align=" horizontal alignment"Copy the code