-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
38 lines (33 loc) · 1.55 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
<!DOCTYPE html>
<html lang="ko">
<head>
<title>나눔스퀘어 웹폰트</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="nanumsquare.css" rel="stylesheet">
<style>
html, body{margin:0;padding:0;height:100%}
body{background-color:#263238;font:1.2em/1.3em 'NanumSquare', sans-serif;color:#ECEFF1}
body > div{display:table;width:100%;height:100%}
body > div > div{display:table-cell;vertical-align:middle}
p{text-align:center}
p strong.extra{font-weight: 800}
p.light{font-weight: 300}
.ac{margin-top:-1em;font-family: 'NanumSquareAc', sans-serif !important}
</style>
</head>
<body>
<div>
<div>
<p>기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</p>
<p class="ac">기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</p>
<p><strong>기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</strong></p>
<p class="ac"><strong>기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</strong></p>
<p><strong class="extra">기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</strong></p>
<p class="ac"><strong class="extra">기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</strong></p>
<p class="light">기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</p>
<p class="ac light">기회는 일어나는 것이 아니라 만들어내는 것이다. (벭)</p>
</div>
</div>
</body>
</html>