├── .gitignore ├── LICENSE ├── README.md ├── fonts ├── NanumGothicCoding-Bold.eot ├── NanumGothicCoding-Bold.ttf ├── NanumGothicCoding-Bold.woff ├── NanumGothicCoding-Bold.woff2 ├── NanumGothicCoding-Regular.eot ├── NanumGothicCoding-Regular.ttf ├── NanumGothicCoding-Regular.woff └── NanumGothicCoding-Regular.woff2 ├── nanum-gothic-coding.css └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | 14 | # Directory for instrumented libs generated by jscoverage/JSCover 15 | lib-cov 16 | 17 | # Coverage directory used by tools like istanbul 18 | coverage 19 | 20 | # nyc test coverage 21 | .nyc_output 22 | 23 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 | .grunt 25 | 26 | # Bower dependency directory (https://bower.io/) 27 | bower_components 28 | 29 | # node-waf configuration 30 | .lock-wscript 31 | 32 | # Compiled binary addons (http://nodejs.org/api/addons.html) 33 | build/Release 34 | 35 | # Dependency directories 36 | node_modules/ 37 | jspm_packages/ 38 | 39 | # Typescript v1 declaration files 40 | typings/ 41 | 42 | # Optional npm cache directory 43 | .npm 44 | 45 | # Optional eslint cache 46 | .eslintcache 47 | 48 | # Optional REPL history 49 | .node_repl_history 50 | 51 | # Output of 'npm pack' 52 | *.tgz 53 | 54 | # Yarn Integrity file 55 | .yarn-integrity 56 | 57 | # dotenv environment variables file 58 | .env 59 | 60 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010, NHN Corporation (http://www.nhncorp.com), 2 | with Reserved Font Name Nanum, Naver Nanum, NanumGothic, Naver 3 | NanumGothic, NanumMyeongjo, Naver NanumMyeongjo, NanumBrush, Naver 4 | NanumBrush, NanumPen, Naver NanumPen. 5 | 6 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 7 | This license is copied below, and is also available with a FAQ at: 8 | http://scripts.sil.org/OFL 9 | 10 | 11 | ----------------------------------------------------------- 12 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 13 | ----------------------------------------------------------- 14 | 15 | PREAMBLE 16 | The goals of the Open Font License (OFL) are to stimulate worldwide 17 | development of collaborative font projects, to support the font creation 18 | efforts of academic and linguistic communities, and to provide a free and 19 | open framework in which fonts may be shared and improved in partnership 20 | with others. 21 | 22 | The OFL allows the licensed fonts to be used, studied, modified and 23 | redistributed freely as long as they are not sold by themselves. The 24 | fonts, including any derivative works, can be bundled, embedded, 25 | redistributed and/or sold with any software provided that any reserved 26 | names are not used by derivative works. The fonts and derivatives, 27 | however, cannot be released under any other type of license. The 28 | requirement for fonts to remain under this license does not apply 29 | to any document created using the fonts or their derivatives. 30 | 31 | DEFINITIONS 32 | "Font Software" refers to the set of files released by the Copyright 33 | Holder(s) under this license and clearly marked as such. This may 34 | include source files, build scripts and documentation. 35 | 36 | "Reserved Font Name" refers to any names specified as such after the 37 | copyright statement(s). 38 | 39 | "Original Version" refers to the collection of Font Software components as 40 | distributed by the Copyright Holder(s). 41 | 42 | "Modified Version" refers to any derivative made by adding to, deleting, 43 | or substituting -- in part or in whole -- any of the components of the 44 | Original Version, by changing formats or by porting the Font Software to a 45 | new environment. 46 | 47 | "Author" refers to any designer, engineer, programmer, technical 48 | writer or other person who contributed to the Font Software. 49 | 50 | PERMISSION & CONDITIONS 51 | Permission is hereby granted, free of charge, to any person obtaining 52 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 53 | redistribute, and sell modified and unmodified copies of the Font 54 | Software, subject to the following conditions: 55 | 56 | 1) Neither the Font Software nor any of its individual components, 57 | in Original or Modified Versions, may be sold by itself. 58 | 59 | 2) Original or Modified Versions of the Font Software may be bundled, 60 | redistributed and/or sold with any software, provided that each copy 61 | contains the above copyright notice and this license. These can be 62 | included either as stand-alone text files, human-readable headers or 63 | in the appropriate machine-readable metadata fields within text or 64 | binary files as long as those fields can be easily viewed by the user. 65 | 66 | 3) No Modified Version of the Font Software may use the Reserved Font 67 | Name(s) unless explicit written permission is granted by the corresponding 68 | Copyright Holder. This restriction only applies to the primary font name as 69 | presented to the users. 70 | 71 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 72 | Software shall not be used to promote, endorse or advertise any 73 | Modified Version, except to acknowledge the contribution(s) of the 74 | Copyright Holder(s) and the Author(s) or with their explicit written 75 | permission. 76 | 77 | 5) The Font Software, modified or unmodified, in part or in whole, 78 | must be distributed entirely under this license, and must not be 79 | distributed under any other license. The requirement for fonts to 80 | remain under this license does not apply to any document created 81 | using the Font Software. 82 | 83 | TERMINATION 84 | This license becomes null and void if any of the above conditions are 85 | not met. 86 | 87 | DISCLAIMER 88 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 89 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 90 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 91 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 92 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 93 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 94 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 95 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 96 | OTHER DEALINGS IN THE FONT SOFTWARE. 97 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nanum Gothic Coding 2 | 3 | The Nanum fonts (Korean: 나눔글꼴) are unicode fonts designed especially for the 4 | Korean-language script, designed by Sandoll Communications (Korean: 산돌 커뮤니케이션) 5 | and Fontrix (Korean: 폰트릭스). The publisher is Naver. Nanum Gothic Coding is a 6 | contemporary monospaced sans-serif with a warm touch and is expertly hinted for 7 | screen use. 8 | 9 | ## Usage 10 | 11 | ```shell 12 | npm install nanum-gothic-coding 13 | ``` 14 | 15 | ## License 16 | 17 | SIL Open Font License 1.1 18 | -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Bold.eot -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Bold.ttf -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Bold.woff -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Bold.woff2 -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Regular.eot -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Regular.ttf -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Regular.woff -------------------------------------------------------------------------------- /fonts/NanumGothicCoding-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emersion/nanum-gothic-coding/e26d424f79c9787622135ae6e17c258ffb40d73f/fonts/NanumGothicCoding-Regular.woff2 -------------------------------------------------------------------------------- /nanum-gothic-coding.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Nanum Gothic Coding (Korean) http://www.google.com/fonts/earlyaccess 3 | */ 4 | @font-face { 5 | font-family: 'Nanum Gothic Coding'; 6 | font-style: normal; 7 | font-weight: 400; 8 | src: url(fonts/NanumGothicCoding-Regular.eot); 9 | src: url(fonts/NanumGothicCoding-Regular.eot?#iefix) format('embedded-opentype'), 10 | url(fonts/NanumGothicCoding-Regular.woff2) format('woff2'), 11 | url(fonts/NanumGothicCoding-Regular.woff) format('woff'), 12 | url(fonts/NanumGothicCoding-Regular.ttf) format('truetype'); 13 | } 14 | @font-face { 15 | font-family: 'Nanum Gothic Coding'; 16 | font-style: normal; 17 | font-weight: 700; 18 | src: url(fonts/NanumGothicCoding-Bold.eot); 19 | src: url(fonts/NanumGothicCoding-Bold.eot?#iefix) format('embedded-opentype'), 20 | url(fonts/NanumGothicCoding-Bold.woff2) format('woff2'), 21 | url(fonts/NanumGothicCoding-Bold.woff) format('woff'), 22 | url(fonts/NanumGothicCoding-Bold.ttf) format('truetype'); 23 | } 24 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nanum-gothic-coding", 3 | "version": "4.0.0", 4 | "description": "Nanum Gothic Coding (Korean)", 5 | "repository": { 6 | "type": "git", 7 | "url": "git+https://github.com/emersion/nanum-gothic-coding.git" 8 | }, 9 | "keywords": [ 10 | "font", 11 | "hangul" 12 | ], 13 | "author": "Sandoll Communications, Fontrix, Naver", 14 | "license": "OFL-1.1", 15 | "bugs": { 16 | "url": "https://github.com/emersion/nanum-gothic-coding/issues" 17 | }, 18 | "homepage": "https://github.com/emersion/nanum-gothic-coding#readme" 19 | } 20 | --------------------------------------------------------------------------------