index.html

来自「全面应用Java网络Web」· HTML 代码 · 共 86 行

HTML
86
字号
<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 
   "DTD/xhtml1-strict.dtd">

<html xmlns = "http://www.w3.org/1999/xhtml" 
   lang = "en" xml:lang="en">

   <head>
      <title>Welcome to the Deitel Bookstore!</title>
      <link href = "styles/default.css" rel = "StyleSheet"/>
   </head>
   <body>

   <div>
      <div class = "logo">
         <table style = "width: 100%;">
            <tr>
               <td style = "text-align: left;">
                  <img src = "images/logotiny.gif"/>
               </td>

               <td style = "text-align: right;">
                  <div style = "position: relative; bottom: -50px;">
                     <form action = "ProductSearch" method = "get">
                        <p>
                           <input type = "text" size="15" 
                              name = "searchString" />
                           <input type = "submit" value = "Search"/>
                        </p>
                     </form>
                  </div>
               </td>
            </tr>
         </table>
      </div>

      <div class = "navigation">
         <table>
            <tr>
            <td class = "menu">
               <a href = "GetAllProducts">Product Catalog</a>
            </td>

            <td class = "menu">
               <a href = "registration.html">Create Account</a>
            </td>

            <td class = "menu">
               <a href = "login.html">Log in</a>
            </td>

            <td class = "menu">
               <a href = "ViewCart">Shopping Cart</a>
            </td>

            <td class = "menu">
               <a href = "ViewOrderHistory">Order History</a>
            </td>
            </tr>
         </table>
      </div>
   </div>

   <div class ="header">Welcome to the Deitel Bookstore!</div>

   </body>

<!-- 
  (C) Copyright 2001 by Deitel & Associates, Inc. and         
  Prentice Hall. All Rights Reserved.                         
                                                              
  DISCLAIMER: The authors and publisher of this book have     
  used their best efforts in preparing the book. These        
  efforts include the development, research, and testing of   
  the theories and programs to determine their effectiveness. 
  The authors and publisher make no warranty of any kind,     
  expressed or implied, with regard to these programs or to   
  the documentation contained in these books. The authors     
  and publisher shall not be liable in any event for          
  incidental or consequential damages in connection with, or  
  arising out of, the furnishing, performance, or use of      
  these programs.                                             
 -->

</html>

⌨️ 快捷键说明

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