-
Notifications
You must be signed in to change notification settings - Fork 0
/
person.html
103 lines (72 loc) · 2.78 KB
/
person.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<base href="<%=basePath%>">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport"content="width=device-width, initial-scale=1" />
<title>实验室成员 | 计算机应用技术协会实验室</title>
<link type="text/css" href="css/base.css" rel="stylesheet" />
<link type="text/css" href="css/present.css" rel="stylesheet" />
<!--[if lt IE 9]>
<script>
(function() {
if (!
/*@cc_on!@*/
0) return;
var e = "abbr, article, aside, audio, canvas, datalist, details, dialog, eventsource, figure, footer, header, hgroup, mark, menu, meter, nav, output, progress, section, time, video".split(', ');
var i= e.length;
while (i--){
document.createElement(e[i])
}
})()
</script>
<![endif]-->
</head>
<body>
<header>
<nav>
<div id="banner">
<div id="logo">
<img src="images/1.png"/>
</div>
</div>
<ul id="nav">
<li ><a href="index.jsp">首页</a></li>
<li><a href="introduce.jsp">实验室简介</a></li>
<li><a href="person.jsp">实验室成员</a></li>
<li><a href="present.jsp">实验室作品</a></li>
</ul>
<div id="collect" onclick="AddFavorite(window.location,document.title)"><span>收藏</span></div>
</nav>
</header>
<div id="box">
<section>
<div id="per_con">
<h3>实验室成员</h3>
<p>实验室纳新<span>>实验室成员</span></p>
<div class="play" id="play">
<ul>
<li><img src="images/zhong.jpg"/></li>
<li><img src="images/wu.jpg"/></li>
<li><img src="images/xu.jpg"/></li>
<li><img src="images/ma.jpg"/></li>
<li><img src="images/cao.jpg"/></li>
<li><img src="images/ren.jpg"/></li>
</ul>
</div>
</div>
</section>
</div>
<footer>
<p>
关于实验室 | 服务条款 | 实验室成品 | 实验室纳新 | 实验室成员 | 客服中心</p>
<address>Copyright © CAL. All Rights Reserved.</address>
</footer>
</body>
</html>