Font Tag dalam HTML ialah salah satu atribut terpenting yang digunakan untuk menjadikan halaman web atau dokumen HTML lebih menarik. Ia mempunyai sifat untuk menukar saiz, warna dan gaya teks yang disertakan. Dengan bantuan teg fon, seseorang boleh membuat saiz, warna dan muka halaman web dalam format teks yang sama. Teg ini berfungsi terutamanya pada tiga atribut utama seperti saiz, Wajah atau Jenis dan warna. Teg fon berfungsi sebagai elemen sebaris dalam HTML untuk menukar beberapa ciri teks blok dalam dokumen HTML. Teks yang disertakan dalam tag digunakan untuk menentukan gaya kepada teks yang disertakan di dalamnya.
Sintaks:
<font size =" " face =" " color=" ">
<body> <p> <font size="2" color="blue" face="Calibri"> </font> </p> </body>
Teg ini menyokong atribut Global serta Acara juga. Selain itu, ia menyokong beberapa atribut lain yang kawasan yang disenaraikan di bawah:
|
Penerangan Butiran | ||||||||||
Saiz | Atribut ini digunakan untuk menentukan saiz tertentu untuk teks antara 1 hingga 7. | ||||||||||
Wajah atau taip | Atribut ini digunakan untuk menentukan jenis fon untuk teks yang disertakan. | ||||||||||
Warna | Atribut ini digunakan untuk menunjukkan teks tertutup dalam warna yang berbeza. | ||||||||||
Berat | Atribut ini mentakrifkan keberanian teks teg fon. |
Contoh #1
Mentakrifkan teg fon dengan nilai atributnya:
<!DOCTYPE html> <html> <head> <title>Font Tag in HTML</title> </head> <body> <h2>Example of Font Tag in HTML </h2> <p>General text without any Font tag attribute value</p> <p> <font color="orange">Text having normal font size and font face . Only changing font color </font> </p> <p> <font face="cursive">Text having different font face.</font> </p> <p> <font size="3">Text with Increased font size having default font type. </font> </p> </body> </html>
Output:
Contoh #2
Tentukan teg fon dengan nilai atributnya ditakrifkan melalui CSS:
<!DOCTYPE html> <html> <head> <title>Font Tag in HTML</title> </head> <body> <h2>Example of Font Tag in HTML using CSS </h2> <p>Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="color : lightgreen;"> Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="font-family : Book Antiqua; color: blue; " > Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> <p style="font size:3px;"> Someone’s sitting in the shade today because someone plated a tree a long time ago. </p> </body> </html>
Output:
Contoh #3
Dalam contoh ini, kami menggunakan teg Font dengan saiz nilai atribut, yang akan menentukan teks daripada saiz terendah kepada saiz tertinggi seperti yang ditunjukkan di bawah:
<!DOCTYPE html> <html> <head> <title>HTML font tag</title> </head> <body> <font size = "1">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "2">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "3">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "4">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "5">People may doubt what you say, but they will believe what you do.</font><br /> <br/> <font size = "6">People may doubt what you say, but they will believe what you do.</font><br/><br/> <font size = "7">People may doubt what you say, but they will believe what you do.</font> </body> </html>
Output:
Contoh #4
<!DOCTYPE html> <html> <head> <title>HTML tag with Font Type attribute</title> </head> <body> <font face = "Comic sans MS"> Correct one fault at a time. Concentrate on the one fault you want to overcome.</font><br/> <font face = "Bernard MT Condensed" color="Red" >Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Algerian">Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Book Antiqua" size="5">Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> <font face = "Aharoni"> Correct one fault at a time. Concentrate on the one fault you want to overcome.</font><br/> <font face = "AR BERKLEY" >Correct one fault at a time. Concentrate on the one fault you want to overcome. </font><br/> </body> </html>
Output:
Contoh #5
<!DOCTYPE html> <html> <head> <title>HTML Font tag-Color </title> </head> <body> <font color = "#cc0066"><b>It is terrible thing to see and have no vision</b></font><br> <font color = "#66ff33"><b>Today's preparation </b></font> <br> <font color = "#0000cc"><strong>Success depends on your backbone not your wishbone.</strong></font><br /> <font color = "#cc3300"><b>Patience makes lighter what sorrow may not heal</b></font> <br> <font color = "#666600"><b>Hold fast to dreams, for if dreams die, life is broken winged bird that cannot fly </b></font> <br> </body> </html>
Output:
Atas ialah kandungan terperinci Tag Font dalam HTML. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!