fig27_17.html

来自「PERL语言资料 可以用于PERL程序设计」· HTML 代码 · 共 74 行

HTML
74
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- Fig. 27.17: fig27_17.html --> 

<html>
<head>
<title>Sample FORM to take user input in HTML</title>
</head>

<body background = "images/back.gif">
<basefont face = "arial, sans-serif" size = "2">

   <font size = "+2">
      <strong>This is a sample registation form.</strong>
   </font><br> 
   Please fill in all fields and click Register.
   
   <form method = "post" action = "/cgi-bin/fig27_18.py">
      <img src = "images/user.gif"><br>
      <font color = "blue">
         Please fill out the fields below.<br>
      </font>
      
      <img src = "images/fname.gif"> 
      <input type = "text" name = "firstname"><br>
      <img src = "images/lname.gif">
      <input type = "text" name = "lastname"><br>
      <img src = "images/email.gif">
      <input type = "text" name = "email"><br>
      <img src = "images/phone.gif">
      <input type = "text" name = "phone"><br>
      
      <font size = "-2">
         Must be in the form (555)555-5555<br><br>
      </font>
      
      <img src = "images/downloads.gif"><br>
      <font color = "blue">
         Which book would you like information about?<br>
      </font>

      <select name = "book">
         <option>Perl How to Program
         <option>Python How to Program
         <option>E-business and E-commerce How to Program
         <option>Internet and WWW How to Program
         <option>C++ How to Program 3e
         <option>Java How to Program 3e
         <option>Visual Basic How to Program
      </select>
      <br><br>
            
      <img src = "images/os.gif"><br>
      <font color = "blue">
         Which operating system are you 
         currently using?<br>
      </font>

      <input type = "radio" name = "os" value = "Windows NT" 
      checked> 
      Windows NT
      <input type = "radio" name = "os" value = "Windows 2000"> 
      Windows 2000
      <input type = "radio" name = "os" value = "Windows 95_98"> 
      Windows 95/98<br>
      <input type = "radio" name = "os" value = "Linux"> 
      Linux
      <input type = "radio" name = "os" value = "Other"> 
      Other<br>
      <input type = "submit" value = "Register">

   </form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?