ความหมายของ ฟอนต์ภาษาไทย
คำเต็มภาษาอังกฤษ "Font"
คำเต็มภาษาไทย "ชุดแบบอักษร"
หมายถึง ตัวอักษรที่ต่างกันทั้งแบบและขนาด มีไว้ให้เลือกมากมายเพื่อให้เหมาะกับงานพิมพ์ประเภทต่าง ๆ เช่น ป้ายโฆษณา การพาดหัวข่าว งานพิมพ์เอกสารต่าง ๆ แบบอักษรแต่ละแบบจะมีชื่อ เพื่อให้สะดวกในการเรียกใช้ ดูตัวอย่างข้างล่างนี้ abcd ABCD ABCD
อ้างอิง
ความหมายของ ฟอนต์อังกฤษ
Font famliy (HTML)
From Wikipedia, the free encyclopedia
In HTML and XHTML, a font face or font family is the typeface that will be applied by a web browser to some text. The font is relevant for the display of text on the screen, on a printer or another device.
A font family and other presentation attributes of a font may be applied in HTML code in either cascading style sheets (CSS) or the deprecated HTML font
element.
.text { font-family: times, serif; font-size:14pt; font-style:italic; }
<p class="text">
Sample text formatted with CSS in a separate stylesheet.
</p>
<p style="font-family: times, serif; font-size:14pt; font-style:italic">
Sample text formatted with inline CSS.
</p>
<p><i><font face="times, serif" size="3">
Sample text formatted with the deprecated FONT tag.
</font></i></p>
When using CSS to apply a font whose name has whitespace in it, use quotes or single quotes to delimit the name.
.text { font-family: "calibri", Garamond, 'Comic Sans'; }
In CSS, a font-family (or face in HTML) consists of a set of related fonts, grouped as font families. For example, the Timesfamily includes different font sizes, styles (like roman and italic), and weight (like regular and bold).
The web browser will only be able to apply a font if it is available on the system on which it operates, which is not always the case. HTML code writers may list in preferential order font families to use when rendering text. The font list is separated by commas (as shown above). To avoid unexpected results, the last font family on the font list should be one of the five generic families which are by default always available in HTML and CSS. In the absence of a font being found, the web browser will use its default font, which may be a user-defined one. Depending on the web browser, a user can in fact override the font defined by the code writer. This may be for personal taste reasons, but may also be because of some physical limitation of the user, such as the need for a larger font size or the avoidance of certain colors.
แปลเป็นไทย
จากวิกิพีเดียฟรี
ในรูปแบบ HTML และ XHTML ใบหน้าของตัวอักษรหรือครอบครัวของตัวอักษรเป็นแบบอักษรที่จะถูกนำมาใช้โดยเว็บเบราเซอร์ไปยังข้อความบางส่วน ตัวอักษรที่มีความเกี่ยวข้องสำหรับการแสดงผลของข้อความบนหน้าจอบนเครื่องพิมพ์หรืออุปกรณ์อื่น
ครอบครัวตัวอักษรและคุณสมบัติอื่น ๆ ของการนำเสนอตัวอักษรอาจจะถูกนำไปใช้ในโค้ด HTML ทั้งในสไตล์ชีท (CSS) หรือองค์ประกอบตัวอักษรเลิก HTML
.text { font-family: times, serif; font-size:14pt; font-style:italic; }
<p class="text">
Sample text formatted with CSS in a separate stylesheet.
</p>
<p style="font-family: times, serif; font-size:14pt; font-style:italic">
Sample text formatted with inline CSS.
</p>
<p><i><font face="times, serif" size="3">
Sample text formatted with the deprecated FONT tag.
</font></i></p>
เมื่อใช้ CSS ที่จะใช้ตัวอักษรที่มีชื่อมีช่องว่างในนั้นใช้คำพูดหรือคำพูดเดียวเพื่อกำหนดชื่อ
.text { font-family: "calibri", Garamond, 'Comic Sans'; }
ใน CSS, font ครอบครัว (หรือใบหน้าในรูปแบบ HTML) ประกอบด้วยชุดของตัวอักษรที่เกี่ยวข้องกับการจัดกลุ่มเป็นครอบครัวตัวอักษร ตัวอย่างเช่น Timesfamily มีขนาดตัวอักษรที่แตกต่างกันรูปแบบ (เช่นโรมันและตัวเอียง) และน้ำหนัก (เช่นปกติและตัวหนา)เว็บเบราเซอร์จะสามารถที่จะใช้ตัวอักษรถ้ามันมีอยู่ในระบบที่จะดำเนินการซึ่งไม่ได้เป็นอย่างนั้นเสมอ HTML นักเขียนรหัสรายการอาจอยู่ในครอบครัวตัวอักษรเพื่อให้สิทธิพิเศษที่จะใช้เมื่อการแสดงผลข้อความ รายการตัวอักษรที่อยู่คั่นด้วยเครื่องหมายจุลภาค (ดังที่แสดงด้านบน) เพื่อหลีกเลี่ยงผลที่ไม่คาดคิด, ครอบครัวตัวอักษรสุดท้ายในรายการแบบอักษรควรจะเป็นหนึ่งในห้าของครอบครัวทั่วไปซึ่งโดยปกติมักจะมีอยู่ใน HTML และ CSS ในกรณีที่ไม่มีตัวอักษรที่ถูกพบเว็บเบราเซอร์จะใช้แบบอักษรเริ่มต้นของ บริษัท ซึ่งอาจจะเป็นที่ผู้ใช้กำหนดหนึ่ง ทั้งนี้ขึ้นอยู่กับเว็บเบราเซอร์ของผู้ใช้ในความเป็นจริงสามารถแทนที่ตัวอักษรที่กำหนดโดยนักเขียนรหัส นี่อาจจะเป็นเหตุผลรสนิยมส่วนตัว แต่ยังอาจเป็นเพราะข้อ จำกัด ทางกายภาพบางส่วนของผู้ใช้เช่นที่จำเป็นสำหรับขนาดตัวอักษรขนาดใหญ่หรือการหลีกเลี่ยงของสีบาง
อ้างอิง
http://en.wikipedia.org/wiki/Font_family_(HTML)