Home  >  Article  >  Web Front-end  >  Cleverly open Windows file management with HTML

Cleverly open Windows file management with HTML

一个新手
一个新手Original
2017-09-09 13:44:232311browse


(1) Code demonstration

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<fieldset>
 <legend>注册</legend><form action="#"  method="post">
 <table cellpadding="2" align="center">
    <tr>
      <td  align="right" >用户名:</td>
      <td><input type="text" name="username"/> </td>
    </tr>
    <tr>
      <td  align="right" >密码:</td>
      <td> <input type="password" name="password"/> </td>
    </tr>
    <tr>
      <td  align="right" >性别:</td>
      <td> 
        <input type="radio"  name="gender" value="male"/>男         
        <input type="radio"  name="gender" value="female"/>女 
      </td>
      <tr>
          <td  align="right">擅长:</td>
          <td>
          <input type="checkbox"  name="" value=""/>Java          
          <input type="checkbox"  name="" value=""/>Hadoop            
          <input type="checkbox"  name="" value=""/>PHP          
       </td>
      </tr>
            <td  align="right">头像:</td>
            <td>
              <input  type="file" name="photo"/>
            </td>
      <tr>
        </tr>
            <td colspan="2" align="center">
              <input  type="submit" value="注册">
               <input  type="reset" value="重置">
            </td>
        <tr>
      </tr>
 </table>
 </form>
 </fieldset>
 </body>
 </html>

(2) Rendering

Cleverly open Windows file management with HTML


The above is the detailed content of Cleverly open Windows file management with HTML. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn