HTML5入门
刚学html1小时,简单做了个说明页面,没有css美化不堪入目
| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 
 | <!DOCTYPE html><html>
 <head>
 
 <meta charset="utf-8">
 <title>瑜璟的小屋</title>
 </head>
 <body>
 <h1>说明</h1>
 <p><strong>这是一个登录界面</strong></p>
 <p>前往我的<a href="https://yujingsea.github.io" target="_blank">技术博客</a></p>
 <h2>博客的特点</h2>
 <ol>
 <li><em>绿色无广告</em></li>
 <li><em>分享编程基础教学内容</em></li>
 <li><em>内置烟花播放器网页</em></li>
 <li><em>加载迅速</em></li>
 </ol>
 <table>
 <thead>
 <tr>
 <th>作者</th>
 <th>位置</th>
 <th>邮箱</th>
 </tr>
 </thead>
 <thead>
 <tr>
 <td>瑜璟</td>
 <td>河南郑州</td>
 <td>3224057107@qq.com</td>
 </tr>
 </thead>
 </table>
 <br>
 <hr>
 <br>
 <form action="form.js" method="post">
 <div>
 <label>账号</label>
 <input type="text" name="name" placeholder="输入你的账号">
 </div>
 <div>
 <label>密码</label>
 <input type="password" name="password" placeholder="输入你的密码">
 </div>
 <input type="button" name="submit" value="登录">
 <input type="button" name="按钮" value="注册">
 <br>
 <input type="button" name="按钮" value="这是一只可爱的按钮">
 <p><abbr title="你怎么这么笨">忘记密码?</abbr></p>
 </form>
 </body>
 </html>
 
 |