-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (76 loc) · 2.97 KB
/
index.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
<!DOCTYPE html>
<html lang="zh-cmn-hans">
<head>
<meta charset="UTF-8">
<title>CCNU|Security</title>
<meta name="theme-color" content="#3498db">
<link rel="icon" href="img/icon/32.png" sizes="32x32"/>
<link rel="icon" href="img/icon/192.png" sizes="192x192"/>
<link href="css/style.css" rel="stylesheet" type="text/css"/>
<link href="https://cdn.jsdelivr.net/gh/FortAwesome/Font-Awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1"/>
</head>
<body>
<header>
<div class="head-title">
<h2 class="site-title">华中师范大学信息安全协会</h2>
<div class="toggle-btn"></div>
<div class="search-btn"></div>
</div>
<div class="head-menu">
<ul>
<li><a href="#" target="_blank"><i class="fa fa-home"></i>首页</a></li>
</ul>
</div>
<div class="head-search">
<form method="post" action="">
<input type="text" name="s" placeholder="想搜索什么?">
</form>
</div>
</header>
<main class="container">
<div class="wrap clear">
<div class="main-head">
<div class="background"></div>
</div>
<div class="main-content">
<div class="single">
<h2>欢迎来到华中师范大学信息安全协会</h2>
<div class="row">
<div class="col-m-3 col-s-6">
<a class="testing-item" href="./guide/index.html" target="_blank">
<img src="img/CCNUS.jpg" alt="ccnu_about"/>
<h4>About us</h4>
</a>
</div>
<div class="col-m-3 col-s-6">
<a class="testing-item" href="./ctfAbout.html" target="_blank">
<img src="img/ctf.png" alt="ctf_about"/>
<h4>About CTF</h4>
</a>
</div>
<div class="col-m-3 col-s-6">
<a class="testing-item" href="./ctfGo.html" target="_blank">
<img src="img/l2d.jpg" alt="ctfGo"/>
<h4>CTF入坑指南</h4>
</a>
</div>
<div class="col-m-3 col-s-6">
<a class="testing-item" href="./join.html" target="_blank">
<img src="img/qrcode.jpg" alt="join"/>
<h4>Join us</h4>
</a>
</div>
</div>
<p>更多信息敬请期待~</p>
</div>
</div>
</div>
</main>
<footer>
<p>Copyright © 2021 <a href="#" target="_blank">CCNU|Security</a>. All Rights Reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/jquery/dist/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>