产品入库表

  <html>
  <head>
  <style>
  body{
  margin:0px;
  padding:0px;
  font-size:14px;
  overflow:hidden;
  text-align:center;
  }
  #container{
  width:95%;
  margin-top: 10px;
  }
  #title{
  font: italic small-caps 600 12pts/150% Courier;
  font-size: 25px;
  color:#292929;
  margin-bottom: 25px;
  }
  #style1{
  margin-top: 15px;
  }
  #style2{
  color:#292929;
  margin-top: 25px;
  }
  #style2 input{
  margin-left:15px;
  cursor: hand;
  }
  #style4{
  margin-top: 7px;
  color:red;
  }
  #style4 input{
  width:300px;
  height:20px;
  margin-bottom: 7px;
  background-color: #292929;
  border: 0;
  color:#6cD0FF;
  }
  </style>
  </head>
  <body>
  <div id="container">
  <div id="title">
       产品入库表
  </div>
  <div id="style1">
    <form action="StoreIn.jsp" method="get" accept-charset="gb2312">
  <div id="style4">
  产品名称&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="pName" /></br>
  产品型号&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="pType" /></br>
  产品数量&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="pNum" /></br>
  产品单价&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="pPrice" /></br>
  入库日期&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="pdIn" /></br>
  </div>
  <div id="style2">
    <input type="submit" value="提交"/>
    <input type="reset" value="重置"/>
  </div>
    </form>
  </div>
  </div>
  </body>
  </html>

你可能感兴趣的:(html,css)