Skip to content

Commit 3c89e72

Browse files
committed
Put the first draft
1 parent 051b6d1 commit 3c89e72

9 files changed

+371
-1
lines changed

css/bootstrap.min.css

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/is521.css

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
html {
2+
position: relative;
3+
min-height: 100%;
4+
}
5+
body {
6+
margin-bottom: 60px;
7+
}
8+
.footer {
9+
position: absolute;
10+
bottom: 0;
11+
width: 100%;
12+
height: 60px;
13+
background-color: #f5f5f5;
14+
}
15+
16+
.container {
17+
width: auto;
18+
max-width: 680px;
19+
padding: 0 15px;
20+
}
21+
.container .text-muted {
22+
margin: 20px 0;
23+
}
19.7 KB
Binary file not shown.

fonts/glyphicons-halflings-regular.svg

+288
Loading
44.3 KB
Binary file not shown.
22.9 KB
Binary file not shown.
17.6 KB
Binary file not shown.

index.html

+47-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,47 @@
1-
Test
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="KAIST IS-521 course">
8+
<meta name="author" content="Sang Kil Cha">
9+
<link rel="icon" href="favicon.ico">
10+
11+
<title>KAIST IS-521</title>
12+
13+
<link href="./css/bootstrap.min.css" rel="stylesheet">
14+
<link href="./css/is521.css" rel="stylesheet">
15+
</head>
16+
17+
<body>
18+
19+
<!-- Begin page content -->
20+
<div class="container">
21+
<div class="page-header">
22+
<h1>Information Security Laboratory</h1>
23+
</div>
24+
<p class="lead">
25+
Information Security Laboratory (IS-521) is a postgraduate hands-on course
26+
offered at GSIS (Graduate School of Information Security),
27+
<a href="http://www.kaist.ac.kr/html/en/">KAIST</a>, Korea.
28+
</p>
29+
<p>The primary goal of this course is to "learn by doing". Every student
30+
in this course will work on a series of hands-on exercises using Git and
31+
GitHub as their primary tools.
32+
</p>
33+
<p>
34+
This course started in spring 2017 by prof. <a
35+
href="http://softsec.kaist.ac.kr/~sangkilc/">Sang Kil Cha</a>.
36+
</p>
37+
38+
</div>
39+
40+
<footer class="footer">
41+
<div class="container">
42+
<p class="text-muted">IS-521: Information Security Laboratory @ KAIST</p>
43+
</div>
44+
</footer>
45+
46+
</body>
47+
</html>

js/bootstrap.min.js

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)