header.jsp

来自「使用WebLogic Platform构建音乐站点」· JSP 代码 · 共 24 行

JSP
24
字号

  <!-- header.jsp -->

  <table width="100%" border="0" cellpadding="0" cellspacing="0">
  <!-- Topmost table containing the primary header graphics and color -->
   <tr>
   <!--Primary header color defined here in the form of 'bgcolor="#ffffff"' -->
    <td width="100%" height="96" valign="top" bgcolor="#ffffff">
    <!-- Left justified graphic image with arrows -->
    <img src="<%=request.getContextPath ()%>/resources/images/weblogic-img-lt.jpg" border="0" align="left">
    <!-- Right justified graphic text 'Weblogic Workshop version 2.0' -->
    <img src="<%=request.getContextPath ()%>/resources/images/weblogic-img-rt.gif" border="0" align="right">
    </td>
   </tr>
  </table>
  <table width="100%" border="0" cellpadding="0" cellspacing="0">
  <!-- Smaller, lower table containing the decorative 'bar' which could be used for navigation -->
   <tr>
    <!-- Styled, graphical look of 'bar' defined here using a repeatable image specified as 'background="bar-background.gif"' -->
    <td width="100%" height="21" background="<%=request.getContextPath ()%>/resources/images/bar-background.gif">&nbsp;</td>
  </tr>
  </table>
  <!-- end header.jsp -->

⌨️ 快捷键说明

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