1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/6/25
- Time: 14:22
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- <img class="logo_img" alt="" src="static/img/img01.jpg" >
- <base href="http://localhost:8090/TestServlet10_war_exploded/">
- <link type="text/css" rel="stylesheet" href="static/css/style.css">
- <style type="text/css">
- h1 {
- text-align: center;
- margin-top: 200px;
- }
- h1 a {
- color:red;
- }
- </style>
- </head>
- <body>
- <div id="header">
- <img class="logo_img" alt="" src="static/img/img01.jpg" >
- <span class="wel_word"></span>
- <div>
- <span>欢迎<span class="um_span">会员</span>光临书城</span>
- <a href="../order/order.jsp">我的订单</a>
- <a href="../../index01.jsp">注销</a>
- <a href="../../index01.jsp">返回</a>
- </div>
- </div>
- <div id="main">
- <h1>注册成功! <a href="../../index01.jsp">转到主页</a></h1>
- </div>
- <div id="bottom">
- <span>
- www.sziit.edu.cn
- </span>
- </div>
- </body>
- </html>
|