Loading... ## 手写笔记    --- ## 一.HTML介绍 1. 是什么 叫做:超文本标记语言 HTML5*H5*[最新] HTML标准:W3C(国际万维网组织)制订 2. 执行软件 浏览器[Chrome,Firefox,Opera,Safari,Edge] 3. 为什么 做web项目,界面用 4. 谁来用 后端开发,web前端,网页美工UI 5. 什么时候用 需要时使用 6. 用在哪 用在网页上,搭建网页结构/元素 --- ## 二.HTML表单开发 1. 表单怎么写 ```html <form action="此处写要跳转的网页名字"> <!--写详细内容--> </form> ``` 2. 文本框怎么写 ```html 文本框<input type="text" placeholder="此处为文本框占位字符,不写为空"> ``` 3. 密码框怎么写 ```html 密码<input type="password" placeholder="请输入密码,此处为密码框占位字符,不写为空"> ``` 4. 单选按钮怎么写 ```html 单选按钮<input type="radio" name="gender">单选按钮详情 ``` 5. 下拉选择怎么写 ```html 下拉选择<select> <option>1</option> <option>2</option> <option>3</option> <option>写下拉选择内容</option> </select> ``` 6. 复选框怎么写 ```html 复选框<input type="checkbox">1 <input type="checkbox">2 <input type="checkbox">3 <input type="checkbox">写复选框内容 ``` 7. 文本域怎么写 ```html 文本域<textarea rows="你的行数" cols="你的列数"> 我是小草林,Hello WEB!此处为占位字符,不写为空 </textarea> ``` 8. 文件上传怎么写 ```html 上传简历<input type="file"> ``` 9. 提交按钮怎么写 ```html <input type="submit" value="注册提交"> ``` 10. 重置按钮怎么写 ```html <input type="reset" value="清空重填"> ``` 11. 跳转网页怎么写 ```html <form action="此处写要跳转的网页名字"> ``` 最后修改:2021 年 07 月 24 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 0 如果觉得我的文章对你有用,请随意赞赏,谢谢