123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- pageEncoding="UTF-8"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>深圳信息职业技术学院校运会系统</title>
- <style type="text/css">
- *{ margin: 0;
- padding: 0;
- }
- html {
- background: linear-gradient(to top right, white 0%, skyblue 98%, blue 100%);
- font-family: "宋体";
- background-repeat: no-repeat;
- width: 100%;
- height: 100%;
- }
- h1{
- color: white;
- margin-left: 20px;
- margin-top: 15px;
- }
- h4{ color: white;
- margin-left: 20px;
- }
- .a{
- height: 20px;
- width: 95%;
- background: linear-gradient(to bottom, white 25%, gray 100%);
- margin-top: 10px;
- margin-left: 20px;
- }
- p{
- margin: 30px 0 0 500px;
- font-size: 20px;
- }
- </style>
- </head>
- <body>
- <h1>
- 欢迎你登陆深圳信息职业技术学院校运会系统
- </h1>
- <h4>Welcome to Shenzhen Institute of Information Technology</h4>
- <div class="a"></div>
- <p>欢迎进入本系统!请启用下面功能:</p >
- <p>
- <a href="query.jsp">查询成绩</a> <a href="baoming.jsp">报名运动会</a>
- </p >
- </body>
- </html>
|