标准形式
<!DOCTYPEhtml>
<html>
<head>
<metacharset="utf-8">
<title> </title>
</head>
<body><h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
HTML段落
<p> </p>
换行 <br>
HTML表格
<table>
<tr>
<td> </td><!--分割列-->
</tr><!--分割行-->
</table>
HTML列表
无序列表
<ul>
<li>zxy</li>
<li>zmm</li>
</ul>有序列表
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>HTML表单
文本域
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>密码字段
<form>
Password: <input type="password" name="pwd">
</form>单选按钮
<input type="radio">
复选框
<input type="checkbox">
提交按钮
<input type="submit">
HTML链接
<ahref="http://www.google.com">这是一个链接</a>
HTML图像
<imgsrc="/images/logo.png"width="258"height="39">
java备忘录代码和解释 备忘录html
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Protobuf联手FastAPI备忘
本文介绍ProtoBuf相关信息,并介绍在著名后端框架FastAPI中的大致使用思路,离实战还差一大截,仅供参考。
序列化 FastAPI ProtoBuf Cocos creator