-
Notifications
You must be signed in to change notification settings - Fork 1
/
template.html
59 lines (51 loc) · 1.36 KB
/
template.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<link href="../static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="../static/highlight/styles/default.css">
<script src="../static/highlight/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<style>
.bold {
font-weight: bold;
width: 50px;
}
img {
max-width: 100%;
display: block;
margin: 5px 0;
}
.todo {
color: #e30000
}
.title {
font-size: 19px;
color: #e30000;
}
table {
width: 80%;
}
pre {
border: none;
border-radius: 0;
}
</style>
</head>
<body>
<h2 class="text-center"></h2>
<div class="container">
<table class="table table-bordered table-hover">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>