-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (151 loc) · 4.2 KB
/
Copy pathindex.html
File metadata and controls
165 lines (151 loc) · 4.2 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>QuantumInformation</title>
<style>
*{
padding: 0;
margin: 0;
}
li{
list-style: none;
}
.background{
height:900px;
width:1920px;
background: #f2f2f2 url('./images/bg-starfield.jpg') no-repeat;
top:39px;
}
header{
background: #242424;
width:1920px;
height:70px;
display: block;
font-family:'Courier New', Courier, monospace;
color:#ffff;
line-height: 70px;
text-align: center;
font-size: 20px;
}
header > p{
float: left;
width:960px;
}
nav{
width:1920px;
height:38px;
}
nav > p{
width:140px;
float: left;
background:#fa0318fd;
line-height: 38px;
font-family:'STXingkai';
padding-left: 10px;
border-right: 1px solid #f2f2f2;
}
nav > .p_right{
width:200px;
float: right;
background:#fa0318fd;
padding-right: 10px;
border-left: 1px solid #f2f2f2;
}
nav > article{
position: relative;
float: left;
width:1547px;
line-height: 38px;
font-family:'STXingkai';
text-align: center;
}
nav > article > p{
width:386.7px;
float: left;
background: #f0f0f0;
opacity: 0.5;
}
.background .asideLeft{
float: left;
height: 900px;
width:150px;
border-right: 1px solid #f2f2f2;
/* background: #000; */
}
.background .asideRight{
float: right;
height: 900px;
width:221px;
border-left: 1px solid #f2f2f2;
/* background:#000; */
}
.background .asideLeft ul li{
color: #fff;
height: 85px;
background: rgb(14, 13, 13);
border: solid 1px #f0f0f0;
text-align: center;
line-height: 85px;
opacity: 0.7;
}
.mxp0214{
position: absolute;
margin:0px 222px 0 151px;
width:1547px;
height:862px;
background: #f2f2f2;
/* background: #f0f0f0; */
opacity: 0.7;
}
.bottom{
position: absolute;
margin-top:862px;
background: #f2f2f2;
width:1920px;
height:38px;
text-align: center;
line-height: center;
font-family: '微软雅黑';
}
</style>
</head>
<body>
<header>
<p> Quantum Information Science and Technology</p>
<p> Network Penetration and Defense Technology</p>
</header>
<div class="background">
<nav>
<p>量子信息技术</p>
<article>
<p> 移舟泊烟渚 </p>
<p> 日暮客愁新 </p>
<p> 野旷天低树 </p>
<p> 江清月近人 </p>
</article>
<p class="p_right">文章列表</p>
</nav>
<dev class="mxp0214"></dev>
<aside class="asideLeft">
<ul>
<li>量子信息物理原理</li>
<li>量子计算</li>
<li>量子密码</li>
<li>量子通信</li>
<li>量子图像处理</li>
<li>量子雷达</li>
<li>量子度量学</li>
<li>量子模拟</li>
<li>量子成像</li>
<li>休息一会儿</li>
</ul>
</aside>
<aside class="asideRight">
</aside>
<nav class="bottom">我是有底线的。。。</nav>
</div>
</body>
</html>