-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework.html
103 lines (92 loc) · 2.93 KB
/
homework.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="Mark Otto, Jacob Thornton, and Bootstrap contributors">
<meta name="generator" content="Jekyll v4.1.1">
<title>init</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;900&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="shortcut icon" href="img/logo.png">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<!-- Custom styles for this template -->
<link href="style.css" rel="stylesheet">
</head>
<body class="text-center bg bg-cover">
<div class="cover-container d-flex w-100 h-100 p-4 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="f-b masthead-brand cl-white"><a class="f-b" href="index.html">init</a></h3>
<nav class="nav justify-content-center">
<a class="nav-link" href="about.html">About</a>
<a class="nav-link" href="notice.html">Notice</a>
<a class="nav-link" href="project.html">Project</a>
<a class="nav-link" href="recruit.html">Recruit</a>
<a class="nav-link" href="homework.html">Homework</a>
</nav>
</div>
</header>
<div class="p-t-10 p-b-10">
<h1 class="cl-white">Homework</h1>
</div>
<div class="container">
<table class="table table-hover bg-transdark cl-white">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">title</th>
<th scope="col">writer</th>
<th scope="col">deadline</th>
<th scope="col">done</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>O</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
<td>O</td>
</tr>
<tr>
<th scope="row">3</th>
<td colspan="2">Larry the Bird</td>
<td>@twitter</td>
<td>X</td>
</tr>
</tbody>
</table>
</div>
<footer class="mastfoot mt-auto">
<div class="inner">
<p>Copyright © yangnawon</p>
</div>
</footer>
</div>
</body>
</html>