Article introduction of Wulin.com (www.vevb.com): Summary of basic HTML5 tags.
1. Today I learned the tags of html 5 <font>...</font>;<p>...</p>;<br/>;<b>...</b>;<i>...</i>;<h1>....</h1>;<table>...</table>;<img> and other tags.
<font> Common properties: size;color;face;align
size The largest font size is 7; if you want to be bigger. Set with style=font-size; because style is a property in the stylesheet.
<p>...</p>Set the paragraph,... with the next tag... will automatically wrap it.
<br/> is a single tag for line breaks.
<b>;<i> is the bold and italics of the font.
<h1> is the title tag, which decreases from 1 to 6.
<table> table tag, border sets the border size.
It has row label <tr> and column label <td>. Use colspan (one row spans multiple columns) and rowspan (one column spans multiple rows) to merge cells.
cellpacing sets the spacing of cells, cellpadding sets the filling of cells.
<img>Set pictures, commonly used attributes: href, width, height, border, alt, align, etc.
2. The operating principle of html: browser <==> server.
3. The server's default port number for html is 80.