HTML에서의 Font 요소 (<font>
) 는 본문의 글자 크기, 색상과 및면을 정의합니다.
사용 참고:
이 요소를 사용하지 마세요! HTML 3.2에서 정규화되었지만, HTML 4.01에서는 사용되지 않는 요소로 지정되었으며, 동시에 스타일링과 관련된 모든 요소가 HTML5에서 폐기되었습니다.
Starting with HTML 4, HTML does not convey styling information anymore (outside the {{HTMLElement("style")}} element or the style attribute of each element). For any new web development, styling should be written using CSS only.
The former behavior of the {{HTMLElement("font")}} element can be achieved, and even better controlled using the CSS Fonts CSS properties.
다른 HTML 요소들과 같게, 이 요소도 공용 속성을 지원합니다.
1
to 7
with 1
being the smallest and 3
the default. It can be defined using a relative value, like +2
or -3
, which set it relative to the value of the {{htmlattrxref("size", "basefont")}} attribute of the {{HTMLElement("basefont")}} element, or relative to 3
, the default value, if none does exist.This element implements the {{domxref("HTMLFontElement")}} interface.
{{Compat("html.elements.font")}}