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

Cleverly open Windows file management with HTML

一个新手
Release: 2017-09-09 13:44:23
Original
2436 people have browsed it


(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>
Copy after login

(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!

Related labels:
Statement of this Website
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
Latest Issues
Can Windows be learned?
From 1970-01-01 08:00:00
0
0
0
Install PHP in windows environment
From 1970-01-01 08:00:00
0
0
0
zookeeper extension under windows
From 1970-01-01 08:00:00
0
0
0
Can I play vim happily on Windows?
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template