html笔记4

<html>
<body>

<p>这是列表标签</p>
<ul>
<li>xxx</li>
</ul>
</body>
</html>

  

<html>
<body>
<form action="1.php" method="post">
学生<br>
<input type="text" name="学生">
<br>
性别<br>
<input type="radio" name="sex" value="男">
<br>
<input type="submit" value="登录">
</body>
</html>

action是点击了提交按钮后跳转的页面,method是请求方式,submit是提交按钮radio是勾选的东西,text是文本

  

原文地址:https://www.cnblogs.com/haq5201314/p/7625784.html