摘要:
10.1 表单的应用和初级验证提示 <body> <h1>注册</h1> <form action="1.我的第一个网页.html" method="get"> <p>名字: <input type="text" name="username" value="默认初始值为intelliyu" max 阅读全文
摘要:
10. 表单的注册 <body> <!--表单form <form></>form>需要写在form标签之内 <form action="1.我的第一个网页.html" method="get"> action:表单提交的位置,可以是网站,也可以是一个请求处理地址 method: get/post 阅读全文
摘要:
9. 内联框架 <body> <iframe src="" frameborder="0" width="900px" height="700px" name="hello"></iframe> <a href="1.我的第一个网页.html" target="hello">点击我跳转</a> </ 阅读全文
摘要:
8. 简单网页布局 <body> <!--头--> <header> <h2> 页面头部</h2> </header> <!--主--> <section> <h2>Hello World ! </h2> </section> <!--脚--> <footer> <h2>页面脚部</h2> </fo 阅读全文
摘要:
7. 媒体元素 <!--视频--> <video src="../resources/video/视频1.mp4" controls autoplay></video> <!--音频--> <audio src="../resources/video/视频1.mp4" controls autopl 阅读全文
摘要:
6. 表格 <!-- border 表示表格线的宽度 tr 表示行 td 表示列 <td colspan="3">4-1</td> 表示跨列 跨3列 <td rowspan="2">5-1</td> 表示跨行,跨2行 --> <table border="2px"> <tr> <td>1-1</td 阅读全文
摘要:
5. 列表 1. 有序列表 <!--oder list--> <ol> <li>Java</li> <li>Python</li> <li>运维</li> <li>前端</li> <li>C/C++</li> </ol> 2. 无序列表 <!--应用范围:导航,侧边栏--> <ul> <li>Jav 阅读全文