Skip to content

Commit

Permalink
git init
Browse files Browse the repository at this point in the history
  • Loading branch information
moonspam committed May 24, 2017
0 parents commit e52534d
Show file tree
Hide file tree
Showing 15 changed files with 67 additions and 0 deletions.
Binary file added NanumSquareB.eot
Binary file not shown.
Binary file added NanumSquareB.ttf
Binary file not shown.
Binary file added NanumSquareB.woff
Binary file not shown.
Binary file added NanumSquareEB.eot
Binary file not shown.
Binary file added NanumSquareEB.ttf
Binary file not shown.
Binary file added NanumSquareEB.woff
Binary file not shown.
Binary file added NanumSquareL.eot
Binary file not shown.
Binary file added NanumSquareL.ttf
Binary file not shown.
Binary file added NanumSquareL.woff
Binary file not shown.
Binary file added NanumSquareR.eot
Binary file not shown.
Binary file added NanumSquareR.ttf
Binary file not shown.
Binary file added NanumSquareR.woff
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# NanumSquare
나눔스퀘어 웹폰트 입니다.
33 changes: 33 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!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}
</style>
</head>

<body>

<div>
<div>
<p>기회는 일어나는 것이 아니라 만들어내는 것이다.</p>
<p><strong>기회는 일어나는 것이 아니라 만들어내는 것이다.</strong></p>
<p><strong class="extra">기회는 일어나는 것이 아니라 만들어내는 것이다.</strong></p>
<p class="light">기회는 일어나는 것이 아니라 만들어내는 것이다.</p>
</div>
</div>

</body>

</html>
32 changes: 32 additions & 0 deletions nanumsquare.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@font-face {
font-family: 'NanumSquare';
font-weight: 400;
src: url(NanumSquareR.eot);
src: url(NanumSquareR.eot?#iefix) format('embedded-opentype'),
url(NanumSquareR.woff) format('woff'),
url(NanumSquareR.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 700;
src: url(NanumSquareB.eot);
src: url(NanumSquareB.eot?#iefix) format('embedded-opentype'),
url(NanumSquareB.woff) format('woff'),
url(NanumSquareB.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 800;
src: url(NanumSquareEB.eot);
src: url(NanumSquareEB.eot?#iefix) format('embedded-opentype'),
url(NanumSquareEB.woff) format('woff'),
url(NanumSquareEB.ttf) format('truetype');
}
@font-face {
font-family: 'NanumSquare';
font-weight: 300;
src: url(NanumSquareL.eot);
src: url(NanumSquareL.eot?#iefix) format('embedded-opentype'),
url(NanumSquareL.woff) format('woff'),
url(NanumSquareL.ttf) format('truetype');
}

0 comments on commit e52534d

Please sign in to comment.