上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页
摘要: 1.前景色 <style type="text/css"> body { padding: 20px; font-family: Arial, Verdana, sans-serif;} /* color name */ h1 { color: DarkCyan;} /* hex code */ h 阅读全文
posted @ 2024-10-03 13:27 zhongta 阅读(27) 评论(0) 推荐(0)
摘要: 1.CSS引用 <link href="css/styles.cs" type="text/css" rel="stylesheet"> 优先级 行内样式>内部样式=外部样式 2.选择器 (1)通用选择器*{},选取所有元素 (2)类型选择器h1,h2,h3{} (3)类选择器.note{}应用所有 阅读全文
posted @ 2024-10-01 13:57 zhongta 阅读(9) 评论(0) 推荐(0)
摘要: 视频Only MP4, WebM, and Ogg video are supported by the HTML standard. 音频 Only MP3, WAV, and Ogg audio are supported by the HTML standard. <video src="vi 阅读全文
posted @ 2024-09-30 13:44 zhongta 阅读(8) 评论(0) 推荐(0)
摘要: 1.添加Html5标识头 <!DOCTYPE html> 2.注释 <!-- --> 3.块元素 <h1> <p><ul><li><div> 4.内联元素 <a><b><em><img><span> 5.内联框架iframe <body> <iframe width="450" height="35 阅读全文
posted @ 2024-09-29 13:29 zhongta 阅读(9) 评论(0) 推荐(0)
摘要: 1.结构 <form action="http://www.example.com/subscribe.php" method="get"> <p>This is where the form controls will appear.</p> </form> 2.action=url用于接收表单提 阅读全文
posted @ 2024-09-27 13:58 zhongta 阅读(11) 评论(0) 推荐(0)
摘要: 1.基本结构 <table> <tr> <th></th> <th></th> </tr> <tr> <td></td> <td></td> </tr> </table> 2.行标题和列标题 <table> <tr> <th></th> <th scope="col">Saturday</th> < 阅读全文
posted @ 2024-09-26 14:49 zhongta 阅读(19) 评论(0) 推荐(0)
摘要: <img src="images/quokka.jpg" alt="A family of quokka" title="The some"> alt图像无法显示时的描述 title鼠标停留在图像上时的显示。 width:图像的宽度(过时) height图像的高度(过时) 2.图像分类jpg gif 阅读全文
posted @ 2024-09-26 13:31 zhongta 阅读(14) 评论(0) 推荐(0)
摘要: 1.单独使用 <a href="http://baidu.com">Baidu</a> 2.与列表结合 <body> <p>Movie Reviews: <ul> <li><a href="http://www.empireonline.com">Empire</a></li> <li><a hre 阅读全文
posted @ 2024-09-25 13:55 zhongta 阅读(26) 评论(0) 推荐(0)
摘要: <ol></ol>有序列表 <ul></ul>无序列表 <li></li>列表子标签 <dl></dl>定义列表 <dt></dt>定义术语 <dd></dd>定义 例: <html> <head> <title>Definition Lists</title> </head> <body> <dl 阅读全文
posted @ 2024-09-25 13:43 zhongta 阅读(17) 评论(0) 推荐(0)
摘要: 1.<b></b>粗体 2.<i></i>斜体、 现在常用于识别字体图标。 3.<sup></sup>上标 4.<sub></sub>下标 例 水的化学方程式是H<sup>2</sup>O 8的方程式2<sub>3</sub> 5.换行和多个空格被视为一个空格 <p>The moon is drif 阅读全文
posted @ 2024-09-24 13:47 zhongta 阅读(18) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 13 下一页