aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/html/element/font/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/html/element/font/index.html')
-rw-r--r--files/ko/web/html/element/font/index.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/files/ko/web/html/element/font/index.html b/files/ko/web/html/element/font/index.html
new file mode 100644
index 0000000000..44d88447ae
--- /dev/null
+++ b/files/ko/web/html/element/font/index.html
@@ -0,0 +1,48 @@
+---
+title: <font>
+slug: Web/HTML/Element/font
+tags:
+ - 요소
+ - 폐기됨
+translation_of: Web/HTML/Element/font
+---
+<div>{{obsolete_header}}</div>
+
+<h2 id="개요">개요</h2>
+
+<p><em>HTML에서의 Font 요소</em> (<code>&lt;font&gt;</code>) 는 본문의 글자 크기, 색상과 및면을 정의합니다.</p>
+
+<div class="note">
+<p><em>사용 참고: </em></p>
+
+<p><strong>이 요소를 사용하지 마세요! </strong>HTML 3.2에서 정규화되었지만, HTML 4.01에서는 사용되지 않는 요소로 지정되었으며, 동시에 스타일링과 관련된 모든 요소가 HTML5에서 폐기되었습니다.</p>
+
+<p>Starting with HTML 4, HTML does not convey styling information anymore (outside the {{HTMLElement("style")}} element or the <strong>style</strong> attribute of each element). For any new web development, styling should be written using <a href="/en-US/docs/CSS" title="CSS">CSS</a> only.</p>
+
+<p>The former behavior of the {{HTMLElement("font")}} element can be achieved, and even better controlled using the <a href="/en-US/docs/Web/CSS/CSS_Fonts">CSS Fonts</a> CSS properties.</p>
+</div>
+
+<h2 id="속성">속성</h2>
+
+<p>다른 HTML 요소들과 같게, 이 요소도 <a href="/en-US/docs/HTML/Global_attributes" title="HTML/Global attributes">공용 속성</a>을 지원합니다.</p>
+
+<dl>
+ <dt>{{htmlattrdef("color")}}</dt>
+ <dd>This attribute sets the text color using either a named color or a color specified in the hexadecimal #RRGGBB format.</dd>
+ <dt>{{htmlattrdef("face")}}</dt>
+ <dd>This attribute contains a comma-separated list of one or more font names. The document text in the default style is rendered in the first font face that the client's browser supports. If no font listed is installed on the local system, the browser typically defaults to the proportional or fixed-width font for that system.</dd>
+ <dt>{{htmlattrdef("size")}}</dt>
+ <dd>This attribute specifies the font size as either a numeric or relative value. Numeric values range from <code>1</code> to <code>7</code> with <code>1</code> being the smallest and <code>3</code> the default. It can be defined using a relative value, like <code>+2</code> or <code>-3</code>, which set it relative to the value of the {{htmlattrxref("size", "basefont")}} attribute of the {{HTMLElement("basefont")}} element, or relative to <code>3</code>, the default value, if none does exist.</dd>
+</dl>
+
+<h2 id="DOM_interface">DOM interface</h2>
+
+<p>This element implements the {{domxref("HTMLFontElement")}} interface.</p>
+
+<h2 id="브라우저_호환성">브라우저 호환성</h2>
+
+
+
+<p>{{Compat("html.elements.font")}}</p>
+
+<div>{{HTMLRef}}</div>