1234567891011121314151617181920212223 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <html>
- <head>
- <%@ include file="header.jspf" %>
- </head>
-
- <body>
- <div class="container">
- <%@ include file="head.jsp" %>
- <div class="row" style="margin-top: 70px">
- <div class="col-sm-2">
- <%@ include file="left.jsp" %>
- </div>
- <div class="col-sm-10">
- 我的代码区域
- </div>
- </div>
-
- </div>
- <%@ include file="buttom.jsp" %>
- </body>
- </html>
|