-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
88 lines (77 loc) · 2.03 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>online graph database tool</title>
<meta name="description" content="This is an example of a meta description.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="theme.css">
<style>
body {
font-family: "Lato", sans-serif;
}
.sidenav {
width: 130px;
position: fixed;
z-index: 1;
top: 20%;
left: 10px;
background: #eee;
overflow-x: hidden;
padding: 8px 0;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #2196F3;
display: block;
}
.sidenav a:hover {
color: #064579;
}
.main {
margin-left: 140px; /* Same width as the sidebar + left position in px */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body style="max-width: 95%;">
<div style="
background: #f1f1f1;
text-align: center;
padding: 20px;">
<p style="text-align: center;">online knowledge graph</p>
</div>
<div class="sidenav">
<a href="index.html">index</a>
<a href="about.html">About</a>
<a href="data.html">data</a>
</div>
<div class="main">
<h2>Auto Sidebar</h2>
<p>this is the about page</p>
<p>Xinyuan is Uni of Bath student</p>
</div>
<div style="
background: #f1f1f1;
font-size: 12px;
text-align: center;
position: absolute;
bottom: 0;
left: 15px;
padding: 15px 0;
width: 95%;
">
<a href= "https://www.4399.com">relative link</a>
</div>
</body>
</html>