HTML 标签 第2页

HTML tr 标签

阅读(490)

一个简单的 HTML 表格,包含两列两行: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>Saving...

HTML title 标签

阅读(352)

为您的 HTML 文档定义标题: 实例 Run this code » <html> <head> <meta charset="utf-8"> <title>文档标题</title&g...

HTML time 标签

阅读(351)

如何定义时间和日期: 实例 Run this code » <p>我们在每天早上 <time>9:00</time> 开始营业。</p> <p>我在 <time dateti...

HTML thead 标签

阅读(507)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML th 标签

阅读(576)

一个简单的 HTML 表格,带有两个表头单元格和两个数据单元格: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <t...

HTML tfoot 标签

阅读(493)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML template 标签

阅读(497)

使用 <template> 标签在页面加载时该标签中的内容不会显示,加载后可以使用 JavaScript 来显示它: 实例 Run this code » <button onclick="showContent()"&g...

HTML textarea 标签

阅读(376)

一个 HTML 文本区域: 实例 Run this code » <textarea rows="10" cols="30"> 我是一个文本框。 </textarea> 浏览器支持 所有主流浏览器都支持 <te...

HTML tbody 标签

阅读(537)

带有 <thead>、<tfoot> 和 <tbody> 元素的 HTML 表格: 实例 Run this code » <table border="1"> <thead> &l...

HTML table 标签

阅读(496)

一个简单的 HTML 表格,包含两列两行: 实例 Run this code » <table border="1"> <tr> <th>Month</th> <th>Saving...