-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanalysis.html
91 lines (86 loc) · 3.13 KB
/
analysis.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
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
div#container{width:100%;background-color:#BCD4E3;}
div#header {background-image:url(image/header.png);height:150px;width:100%;background-size:100% 100%;}
div#navigation {background-color:#3C72C4; opacity: 0.6;width:100%;height:40px;
position: relative;
left: 0px;
top: 110px;}
div#br {width:100%;height:10px;}
div#center {background-color:;height:500px;width:960px; margin:0 auto;}
div#menu {background-color:#7488B8;height:500px;width:190px;float:left;border-radius:10px;border:2px solid #7488B8;}
div#divise {background-color:;height:500px;width:10px;float:left;}
div#content {background-color:#EEEEEE;height:500px;width:750px;float:left;border-radius:10px;border:2px solid#7488B8;}
div#footer {background-image:url(image/footer.png);height:50px;width:100%;;background-size:100% 100%;clear:both;text-align:center;}
h1 {margin-bottom:0;}
h2 {margin-bottom:0;font-size:18px;}
ul {margin:0;}
li {list-style:none;}
a { text-decoration: none;}
.padding {
padding:0.15cm 5.5cm; }
.nav{
font-family : 微软雅黑,宋体;
font-size : 1.2em;
color :#FFFFFF;
font-weight:bold;}
.nav1{
font-family : 微软雅黑,宋体;
font-size : 1.2em;
color :#000;
font-weight:bold;}
.function{
background-color:#203A66;
border-radius:10px;
width:192px;
height:45px;
font-family : 微软雅黑,宋体;
font-size : 1em;
color :#FFFFFF;
}
.subnav{
font-family : 微软雅黑,宋体;
font-size : 0.8em;
color :#FFFFFF;
}
</style>
</head>
<body>
<div id="container">
<div id="header">
<div id="navigation">
<p class="padding">
<a href="main.html" class="nav">首页</a>
<a href="input.html" class="nav">数据录入与管理</a>
<a href="comment.html" class="nav">水环境评价</a>
<a href="analysis.html" class="nav1">分析决策</a>
<a href="" class="nav">后台管理</a>
<a href="login.php?action=logout" class="nav">退出</a>
</p>
</div>
</div>
<div id="br"></div>
<div id="center">
<div id="menu">
<center><input type="button" name="test" value="功 能 导 航" onClick="location.href='comment.html'" class="function"/>
<br/><br/>
<a href="analysis/analysis1.html" class="subnav">聚类分析</a><br/>
<hr style="filter: alpha(opacity=100, finishopacity=0, style=3)" width="80%" color="#203A66" SIZE="3">
<a href="analysis/analysis2.html" class="subnav">决策树分析</a><br/>
<hr style="filter: alpha(opacity=100, finishopacity=0, style=3)" width="80%" color="#203A66" SIZE="3">
<a href="analysis/analysis3.html" class="subnav">关联规则分析</a><br/>
<hr style="filter: alpha(opacity=100, finishopacity=0, style=3)" width="80%" color="#203A66" SIZE="3">
</center>
</div>
<div id="divise"></div>
<div id="content"><br/> <span>请选择功能导航中需要分析的项目!</span></div>
</div>
</div>
</body>
</html>
<!-- a:link {color:#FF0000;} /* 没访问过的链接样式 */
a:visited {color:#00FF00;} /* 访问过的链接样式 */
a:hover {color:#FF00FF;} /* 鼠标进入链接区域的链接样式 */
a:active {color:#0000FF;} /* 点击链接时的链接样式 */ -->