HTML5-按钮和多选框、图片按钮


DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录注册title>
head>
<body>
    
  <h1>注册h1>
  
  <form action="我的第一个网页.html" method="get">
    
  <p>名字:<input type="text"name="username" value="hu44455" maxlength="8",size="30"/> p>
    
  <p>密码:<input type="password" name="userpwd" size="30"/>p>
  <p>爱好:
    
    <input type="checkbox" value="sleep" name="hobby"/>睡觉
    <input type="checkbox" value="code" name="hobby" checked/>代码
    <input type="checkbox" value="chat" name="hobby"/>聊天
    <input type="checkbox" value="game" name="hobby"/>游戏
    
    p>
    
    <p>按钮:
        <input tyep="button" name ="btn1" value="点击"/>
      
      <input type="image" src="../res/图片.jpg"/>
    p>
    
    <p>
    <input type="submit"/> 
    <input type="reset"/>
    p>
    
  form>
  
body>
html>