上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>form表单</title> </head> <!-- 所有标签都有的属性 id 用来标识元素的唯一性 name 用来提交数据时的参数名称 style 设置元素的css行内样式 c 阅读全文
posted @ 2021-01-23 23:33 雪漠阳光 阅读(69) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>表格标签</title> </head> <!-- 表格 table 表示表格的定义 tr 表示表格中的行(每一行可以包含一个或多个td或th) td 表示表格中的标准单元格 th 阅读全文
posted @ 2021-01-23 23:32 雪漠阳光 阅读(64) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>img图片标签</ 阅读全文
posted @ 2021-01-23 23:30 雪漠阳光 阅读(83) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>a标签实现锚点</title> </head> <!-- 锚点实现 如果想要跳转到当前页面,那么href的值可以设置为# 1、利用a标签的name属性 2、利用其它标签的id属性 阅读全文
posted @ 2021-01-23 23:29 雪漠阳光 阅读(291) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>a标签</title> </head> <!-- 超链接a标签 定义超链接,用于从一个页面链接到另一个页面 行内元素,不会换行。 常用属性: href 必须标签(如果未设置该属性, 阅读全文
posted @ 2021-01-23 23:27 雪漠阳光 阅读(72) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>常用标签</title> </head> <!-- 格式化标签 font 行内元素 不会自动换行 设置字体相关的属性 常用属性 color 字体颜色(颜色名,rgb,16进制) s 阅读全文
posted @ 2021-01-23 23:15 雪漠阳光 阅读(41) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>div和span</title> </head> <!-- div和span div标签 层,块级元素,标签会自动换行。 常用于布局。 常用属性: align div元素中内容的对 阅读全文
posted @ 2021-01-23 23:11 雪漠阳光 阅读(116) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>列表</title> </head> <!-- 列表 无序列表 格式 <ul> <li></li> <li></li> </ul> 常用属性 type 列表的图标 square 实 阅读全文
posted @ 2021-01-23 23:09 雪漠阳光 阅读(51) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>段落和换行</title> </head> <!-- 段落和换行 段落标签 <p></p> 段落会自动换行 常用属性: alig 对齐方式 left 居左对齐(默认) right 阅读全文
posted @ 2021-01-23 23:07 雪漠阳光 阅读(108) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>标题和水平线</title> </he 阅读全文
posted @ 2021-01-23 23:03 雪漠阳光 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页