5.22

error.jsp

复制代码
<%@ page language="java" isErrorPage="true" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>error page</title>
</head>
<body>
错误信息为:<br/>
<%=exception.getMessage()%><br>
<%=exception.toString()%>
</body>
</html>
复制代码

style.css

复制代码
@charset "utf-8";
body{
    background-image: url("stdu.jpg");
    background-size: cover;
    text-align: center;
}
table {
    width: 400px;
    border: 1px solid #696969;
    border-collapse: collapse;
    margin:0 auto;
}

th {
    border: 1px solid #696969;
    background-color: #5f80c9;
}
td {
    text-align: center;
    border: 1px solid ;
    height: 50px;
    opacity:0.8;
    background-color: #fff;
}
input {
    font-size: 20px;
}
a {
    color: #11F7F7;
    text-decoration: none;
    font-size: 18px;
}

a:hover {
    color: #F79011;
    text-decoration: underline;
    font-size: 18px;
}
posted @ 2023-06-11 08:45  意い十三章  阅读(22)  评论(0)    收藏  举报