-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 2.45 KB
/
index.html
File metadata and controls
62 lines (59 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>2ndLAB未来装置研究所</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="./src/main.css">
<link rel="stylesheet" type="text/css" media="screen" href="./src/ripple.css">
<link rel="stylesheet" type="text/css" media="screen" href="./src/component.css">
</head>
<body>
<div class="vertical-container">
<header class="shadow">
<div class="box">
<img class="logo" src="./res/images/01.png" alt="logo">
<h1 class="header_title">2ndLAB未来装置研究所</h1>
</div>
</header>
<table class="shadow">
<tr>
<th>
<a href="https://github.com/peaceshi" class="btn btn-menu shadow ripple">github</a>
<th>
<a href="https://www.zhihu.com/people/peace-shi/activities" class="btn btn-menu shadow ripple">知乎</a>
</th>
<th>
<a href="https://github.com/2ndlab" class="btn btn-menu shadow ripple">研究所</a>
</th>
</tr>
</table>
<section>
<nav id="nav" class="shadow">
<a class="tab-effect btn btn-tab" href="#tab-1-container">1</a>
<a class="tab-effect btn btn-tab" href="#tab-2-container">2</a>
<a class="tab-effect btn btn-tab" href="#tab-3-container">3</a>
<a class="tab-effect btn btn-tab" href="#tab-4-container">4</a>
</nav>
<article class=" box shadow">
<div id="tab-1-container" class="tab-container">
Tab 1 content
</div>
<div id="tab-2-container" class="tab-container">
Tab 2 content
</div>
<div id="tab-3-container" class="tab-container">
Tab 3 content
</div>
<div id="tab-4-container" class="tab-container">
Tab 4 content
</div>
</article>
</section>
<div class="box shadow footer">
<div>什么都没有了呢(〃'▽'〃)</div>
</div>
</div>
</body>
</html>