When learning HTML, it is a tag to write the code to do the experiment, to summarize their usage. Familiarize yourself with each one first and then combine the tags into a few simple pages.
I. Several base tags
<! Doctype> Defining Document Types
<title> defines a title for the document, with the title of each HTML page displayed in the browser's tab.
<body> defining the body of a document
<p> define a paragraph
<br> Define simple line breaks
<!--...--> Define a Comment
Two. Format Control tab
<address> Define document author contact address
<b> define Bold text
<bdo> define text orientation such as <bdo dir= "RTL" > abc</bdo> display as "CBA"
<blockquote> defining block references
<center> Define Center text
<code> Defining computer code text
<del> Define deleted text
<em> Define Accent Text
<font> define font, size, color of text
<i> Defining italic text
<ins> define text to be inserted
<p> defining pre-formatted text
<s> defining text to add strikethrough
<small> Define Small text
<sub> Define Subscript Text
<sup> Defining superscript text
<time> Define a date time
<u> Define underline text
Three. Form Class
<form> defines an HTML form for getting user input
<input> Defining an input control
<textarea> define multi-line text input controls
<button> Define Button
<select> Define a selection list
<optgroup> define a combination of related options in the selection list
<option> define options in the selection list
<label> Defining input Label annotations
Javaweb Learning Summary (ii) HTML common tags