-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·112 lines (106 loc) · 4.09 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Home</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all,follow">
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<!-- Google fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cardo:400,400i">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
<!-- Lightbox-->
<link rel="stylesheet" href="vendor/lightbox2/css/lightbox.min.css">
<!-- Font Awesome-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css">
<!-- Parallax-->
<link rel="stylesheet" href="vendor/onepage-scroll/onepage-scroll.css">
<!-- theme stylesheet-->
<link rel="stylesheet" href="css/style.default.css" id="theme-stylesheet">
<!-- Custom stylesheet - for your changes-->
<link rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="buttons.css">
<!-- Favicon-->
<link rel="shortcut icon" href="favicon.png">
<!-- Tweaks for older IEs--><!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script><![endif]-->
</head>
<body>
<div class="main">
<section class="bg-cover bg-center hero">
<div class="dark-overlay"></div>
<div class="position-relative z-index-1">
<div class="container text-center text-white">
<p class="font-italic lead">欢迎来到N1BOOK在线平台</p>
<h1 class="text-uppercase my-4">My name is N1BOOK</h1>
<p class="font-italic lead">此平台用于Nu1L Team编写的《从0到1 CTFer的成长之路》书籍的在线配套环境</p>
<div class="showcase-examples l-over l-center">
<a href="https://book.nu1l.com" class="button button-glow button-border button-rounded button-primary">https://book.nu1l.com</a>
</div>
</div>
</div>
<div class="scroll-btn link-scroll"><i class="fas fa-angle-double-down"></i></div>
</section>
<section id="1">
<div class="d-flex h-100 align-items-center">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 mb-4 mb-lg-0">
<header class="text-center">
<h2 class="text-uppercase lined">This Site</h2>
</header>
<p>国内顶尖CTF战队倾力编写的专业CTF书籍</p>
<p>内容涵盖CTF线上场景及线下场景以及战队管理</p>
<p>为了让读者更好的融入其中,学到知识,我们会随书同步上线配套题目平台</p>
<p>Hack for fun</p>
</div>
<div class="col-lg-6"><img src="img/about.jpg" alt="..." class="img-fluid d-block mx-auto"></div>
</div>
</div>
</div>
</section>
<section>
<div class="d-flex h-100 align-items-center">
<div class="container">
<header class="text-center mb-5">
<h2 class="text-uppercase lined">Contact Us</h2>
</header>
<div class="row">
<div class="col-lg-6">
<p>我们期待您的建议,欢迎扫码提交</p>
<img src="qrcode.png" width="150">
</div>
<div class="col-lg-6">
<p>书的有关信息我们会及时同步在公众号上,欢迎扫码</p>
<img src="code.jpg" width="170">
</ul>
</div>
</div>
<footer class="py-5 mt-5">
<div class="row">
<div class="col-lg-6 text-center text-lg-left">
<p class="font-italic mb-0 text-gray">Copyright © 2019.Nu1L Team</p>
</div>
<div class="col-lg-6 text-center text-lg-right">
<p class="font-italic mb-0 text-gray"></p>
</div>
</div>
</footer>
</div>
</div>
</section>
</div>
<!-- JavaScript files-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="vendor/onepage-scroll/jquery.onepage-scroll.min.js"></script>
<script src="vendor/lightbox2/js/lightbox.min.js"></script>
<script src="js/front.js"></script>
<!-- FontAwesome CSS - loading as last, so it doesn't block rendering-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.1/css/all.css">
</body>
</html>