时间:2023-08-29 19:54:02 | 来源:网站运营
时间:2023-08-29 19:54:02 来源:网站运营
HTML基础知识:1.互联网的三大基石!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!--标题标签会加粗加黑,会自动换行--> <h1 align="center">走进新时代</h1> <hr width="500px" color="red" align="center" size="3"/> <h2>走进新时代</h2> <h3>走进新时代</h3> <h4>走进新时代</h4> <h5>走进新时代</h5> <h6>走进新时代</h6> <!--p标签不会输出文本的格式--> <p> 宝瓶州落魄山泥瓶巷陈皮皮,<br/>开山大弟子赔钱货,崔东山, 大水怪周米粒。 </p> <!--pre会输出文本的格式--> <pre>宝瓶州落魄山泥腿巷陈皮皮,开山大弟子赔钱货,崔东山, 大水怪周米粒。</pre> </body></html>
5.常用的列表标签<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!--图片--> <img src="img/u=1345759728,698722148&fm=26&gp=0.jpg" /> <!--表格设置--> <table border="1px" cellpadding="20px" cellspacing="0px"> <tr height="100px" align="center"> <td width="100px" align="center">1</td> <td width="100px">2</td> <td width="100px">3</td> </tr> <tr height="100px"> <td>4</td> <td>5</td> <td>6</td> </tr> <tr height="100px"> <td>7</td> <td>8</td> <td>9</td> </tr> <tr height="100px"> <th>12</th> <th>12</th> <th>13</th> </tr> </table> </body></html>
6.html中小标签<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> </head> <body> <!--the title lable h1-h6 is auto 加粗加黑,会自动换行--> <h1 align="center">走进新时代</h1> <hr width="500px" color="red" align="center" size="3"/> <!--u标签是下划线--> <h2><u>走进新时代</u></h2> <!--i标签是斜体--> <h3><i>走进新时代</i></h3> <!--del加上删除线--> <h4><del>走进新时代</del></h4> <!--dl跑马灯--> <marquee direction="right" scrollamount="40px">陈皮皮</marquee> <p> 宝瓶州落魄山泥瓶巷陈皮皮,<br/>开山大弟子赔钱货,崔东山, 大水怪周米粒。 </p> <pre>宝瓶州落魄山泥腿巷陈皮皮,开山大弟子赔钱货,崔东山, 大水怪周米粒。</pre> </body></html>
7.HTML超链接标签<form> <!--the plain text box--> The Account:<input type="text" name="account"/> <br/> The Password:<input type="paswword" name="pwd" value="123" /><br /> <!--the gender box--> boy:<input type="radio" name="sex" /> girl:<input type="radio" name="sex" /><br /> <!--the Multiple selection basket --> play basketball:<input type="checkbox" /> smoking :<input type="checkbox" /> reading:<input type="checkbox" /><br /> <!--the multiple text box--> Introduce to yourself:<textarea rows="12" cols="12"></textarea><br /> <!--select the fiel bottom--> <input type="file" name="fiel"/> <!-- --> <select> <option> ameiacan </option> <option> cbj e</option> </select> </form>
11.ifram标签的作用关键词:知识,基础