当前位置:   article > 正文

html第一次作业

html第一次作业

常用标签

  1. 0, 骨架(!+tap)
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>骨架部分</title>
  8. </head>
  9. <body>
  10. </body>
  11. </html>
1,<h1> - <h6>:定义标题,从大到小的六个级别(逐级减小 独占一行)
  1. 2, 段落标签:<p>:定义段落
  2. <div></div>自成一段
3, 链接标签:<a>:定义超链接 <a href="09-视频.html" target="_blank"> 点击进入新的页面</a>
  1. 4, 图像标签:<img>:插入图像 <img src="../素材/1.jpg" width="200px" alt="这是一张未加载
  2. 出来的法斗的照片" title="555" align="bottom" vspace="200px" hspace="20px">
  3. 视频标签 <vidio>
  4. 音频标签 <audio>
5, 无序列表:<ul><li>:创建无序列表
6, 有序列表:<ol><li>:创建有序列表
  1. 7, 表格标签:
  2. <table>:定义表格
  3. <tr>:定义表格行
  4. <th>:定义表头单元格
  5. <td>:定义数据单元格
8, 注释标签<-- 内容 --> 做注释
9 ,<br>换行  <hr>水平线
10, <pre> 文本格式化(原样输出)
  1. 11, 表单<form action="" method="get和post"> get比较安全 http协议规定不同
  2. 昵称:<input type="text"> placeholder(加提示) readonly(只读)
  3. 密码:<input type="password">(黑点) required设置为必选
  4. 性别:<input type="radio">男(单选)需要内部属性标明是一组单选
  5. (name="sex"),如果要开局选定一个选项加 checked value=""最终输出
  6. 你喜欢吃的食物是:<input type="checkbox">榴莲(多选) 用<label>包起则点文字也能选
  7. 上传文件<input type="file"> multiple 可传多个文件
  8. #下拉框<select name="city">
  9. <option value="上海">上海</option>
  10. </select>
  11. #文本域<textarea name="留言" cols="300" rows="300">
  12. 按钮
  13. <input type="submit"> 提交按钮(相当于<button>) valuege="更改按钮上的文字"
  14. <button></button>元素有三种类型:submit、reset和button。分别用来提交表单、重置表单和执行一些自定义操作。
  1. 12, 框架标签
  2. <iframe src="链接" frameborder="1"></iframe>
  3. name="超链接" 超链接替换链接来嵌套
  1. 13, css引入 <link rel="stylesheet" href="xx.css" 此方法为外链写在head内
  2. xx.css内<div>样式</div>
  3. css内也可以引用其他css样式
  4. css的三大特性
  5. 层叠性:相同的选择器,设置相同的属性,遵循就近原则。哪个样式距离结构近,就用哪个样式
  6. 继承性:子标签会继承父标签的某些属性
  7. 优先级:*0,0,0,0
  8. 标签0,0,0,1
  9. (伪)类选择器0,0,1,0
  10. id选择器0,1,0,0
  11. 行内1,0,0,0
  12. !important最大
  1. 14, 选择器
  2. 基本选择器
  3. 标签选择器 标签{样式}
  4. 类选择器(class="") .类名{样式}
  5. id选择器 #id名{样式}
  6. 通配符选择器 全部东西 *{样式} 优先级最低,容易被覆盖
  7. 子代选择器.a>li 第一层
  8. 后代选择器.a li 包含内层
  9. 逗号选择器.a li ,转行.one{
  10. <ul class="a">
  11. <li>1</li>
  12. <li>2</li>
  13. <li>3</li>
  14. 属性选择器 标签+[属性] { 样式 } 属性可以使用正则*(包含什么) ^(以什么开头) $(以什么结尾)
  15. +号表示下一个标签
  16. 伪类选择器 (描述标签状态的) :hover 当鼠标悬停时状态 比如 a :hover{样式}
  17. a:link(访问前) visited(访问后) active(点击时)
  18. 要按照lvha顺序书写
  19. 其他伪类 ul li:nth-child(个数){} 最后一个nth-last-child{}
  1. 15, 字体相关样式
  2. 字体大小 font-size: px;
  3. 加粗 font-weight:400正常 700加粗;
  4. 斜体 font-style: intalic;
  5. 行高 line-height: 40px; 让行高=容器高度来实现单行文本的垂直居中,水平居中(text-align:center;)
  6. 首行缩进,单位使用em(一个字符)
  7. 文本装饰,text-decoration: none;主要用于去除a链接的默认样式
  8. 颜色 color: rgb(x,x,x);或者用十六进制的方法

练习1,表单

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>用户注册</title>
  8. </head>
  9. <body>
  10. <div align="center">
  11. <p>用户注册</p>
  12. 用户名<input type="text">
  13. <br>
  14. 密码<input type="password">
  15. <br>
  16. 性别<input type="radio" checked>
  17. <input type="radio">
  18. <br>
  19. 爱好<input type="checkbox">写作
  20. <input type="checkbox">听音乐
  21. <input type="checkbox">体育
  22. <br>
  23. 省份<select name="city">
  24. <option value="陕西">陕西</option>
  25. <option value="广东">广东</option>
  26. <option value="黑龙江">黑龙江</option>
  27. </select>
  28. <br>
  29. 自我介绍
  30. <br>
  31. <textarea name="自我介绍" cols="30" rows="9">
  32. </textarea>
  33. <br>
  34. <button type="submit">提交</button>
  35. <button type="reset">重置</button>
  36. </div>
  37. </body>
  38. </html>

结果

练习2,五彩斑斓练习题 

  1. 骨架代码
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>Document</title>
  9. <link rel="stylesheet" href="abbjq.css"
  10. </head>
  11. <body>
  12. <a href="#">五彩斑斓</a>
  13. <a href="#">五彩斑斓</a>
  14. <a href="#">五彩斑斓</a>
  15. <a href="#">五彩斑斓</a>
  16. </body>
  17. </html>
  18. css代码
  19. a{
  20. display: inline-block;
  21. background-color: aqua;
  22. text-decoration: none;
  23. font-size: 30px;
  24. font-weight: 700;
  25. line-height: 40px;
  26. }
  27. a:hover{
  28. background-color: green;
  29. }
  30. a:active{
  31. background-color: pink;
  32. }

 悬停时深绿色,点击时粉色,正常浅蓝色

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/297170
推荐阅读