2010-08-07 17 views

回答

2

正如James Black所说,MS Word或Open Office可以自动将文档另存为html文件。从文件另存为,然后选择网页。

无论如何,如果你想手动做它,那么它不是一个标签,你会最终使用。我只是为你做了一个快速模拟,与你的图像非常相似。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Invoice Title</title> 
</head> 

<body> 
<div id="main"> 
     <div id="header"> 
      <div>Shipment # </div> 
      <div>Invoice # </div> 
      <div><h2>CUSTOMER PO </h2></div> 
     </div> 

     <div id="content"> 
       <div style="text-align:center;" ><h1>PACKAGING LIST </h1> </div> 
       <div style="padding-top:50px;"><h2>Motion detectors consisting of the following,</h2> </div> 
        <div id="items" style="padding-top:40px;"> 1. P/N Auro</div> 

     </div> 

     <div id="footer"> 
       <div id="items" style="padding-top:200px;"><strong> Distributor</strong></div> 
     </div> 
</div> 
</body> 
</html> 

希望帮助