Blogger Information
Blog 2
fans 0
comment 0
visits 598
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
12月1日—商品信息表
sem12的博客
Original
592 people have browsed it

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>商品信息表</title>
</head>
<body>
<form action="" method="get" align="center">
   <label for="username">用戶名:</label>
   <input type="text" id="username" placeholder="請輸入用戶名" required>
   <label for="password">密碼:</label>
   <input type="password" id="password" placeholder="請輸入密碼" required>
   <button>登錄</button>
   <a href="表單.html">立即註冊</a>
</form>

<hr>
<table border="1" cellspacing="0" cellpadding="5" align="center" nowrap>
   <caption><strong>商品價格表</strong></caption>

   <tr bgcolor="#6495ed">
       <th width="50">序號</th>
       <th width="50">種類</th>
       <th width="80">商品名稱</th>
       <th>單位/規格</th>
       <th>價格(元)</th>
   </tr>
   <tr align="center">
       <th colspan="5">生鮮</th>
   </tr>
   <tr align="center">
       <td>1</td>
       <td rowspan="4">水果</td>
       <td>蘋果</td>
       <td>斤</td>
       <td align="right">5.00</td>
   </tr>
   <tr align="center">
       <td>2</td>
<!--        <td>水果</td>-->
<td>鴨梨</td>
       <td>斤</td>
       <td align="right">4.00</td>
   </tr>
   <tr align="center">
       <td>3</td>
       <!--<td>水果</td>-->
<td>臍橙</td>
       <td>斤</td>
       <td align="right">7.00</td>
   </tr>
   <tr align="center">
       <td>4</td>
<!--        <td>水果</td>-->
<td>香蕉</td>
       <td>斤</td>
       <td align="right">6.00</td>
   </tr>
   <tr align="center">
       <th colspan="5">日用品</th>
   </tr>
   <tr align="center">
       <td>5</td>
       <td rowspan="4">紙巾</td>
       <td rowspan="2">潔柔</td>
       <td>袋</td>
       <td align="right">30.00</td>
   </tr>
   <tr align="center">
       <td>6</td>
<!--        <td>紙巾</td>-->
<!--        <td>潔柔</td>-->
<td>包</td>
       <td align="right">5.00</td>
   </tr>
   <tr align="center">
       <td>7</td>
<!--        <td>紙巾</td>-->
<td>清風</td>
       <td>袋</td>
       <td align="right">20.00</td>
   </tr>
   <tr align="center">
       <td>8</td>
<!--        <td>紙巾</td>-->
<td>心相印</td>
       <td>袋</td>
       <td align="right">15.00</td>
   </tr>
   <tr align="center">
       <th colspan="5">食品飲料</th>
   </tr>
   <tr align="center">
       <td>9</td>
       <td rowspan="2">飲料</td>
       <td>可口可樂</td>
       <td>300ml</td>
       <td align="right">3.00</td>
   </tr>
   <tr align="center">
       <td>10</td>
<!--        <td>飲料</td>-->
<td>百事可樂</td>
       <td>300ml</td>
       <td align="right">3.00</td>
   </tr>
</table>
<hr>
<form action="" method="get" align="center">
   以上信息是否有用:
<input type="radio" name="info" value="useful" checked>有用
<input type="radio" name="info" value="useless">無用
<br>
   還想了解哪些信息:
<input type="checkbox" name="category" value="seasonings">調味料
<input type="checkbox" name="category" value="snacks">零食
<input type="checkbox" name="category" value="dairy">乳製品
<input type="checkbox" name="category" value="others">其他
<br>
   意見與建議:<br>
   <textarea name="comment" id="" cols="50" rows="5"></textarea>
   <br>
   <input type="submit" name="submit" value="提交">
</form>
</body>
</html>

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post