将以下几个任务按jsp界面来呈现:1顶部为标题;2底部为个人logo信息;3中部左侧为任务导航区;4中部右侧为所选任务的运行结果
,展示为表格或图表。
jsp界面如下:
<!DOCTYPE html>
<html>
<head>
<title>任务管理系统</title>
</head>
<body>
<div id="header">
<h1>任务管理系统</h1>
</div>
<div id="nav">
<ul>
<li><a href="#">任务1</a></li>
<li><a href="#">任务2</a></li>
<li><a href="#">任务3</a></li>
<li><a href="#">任务4</a></li>
</ul>
</div>
<div id="content">
<div id="result">
<h2>任务1运行结果</h2>
<table>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
</tr>
<tr>
<td>张三</td>
<td>25</td>
<td>男</td>
</tr>
<tr>
<td>李四</td>
<td>30</td>
<td>女</td>
</tr>
</table>
</div>
<div id="logo">
<img src="logo.png" alt="个人logo">
<p>版权所有 © 2021 xxxxx</p>
</div>
</div>
</body>
</html>
``
原文地址: https://www.cveoy.top/t/topic/eAL6 著作权归作者所有。请勿转载和采集!