HTML code is easy to learn/সহজ এইচটিএমএল কোড শিখুন-9 (Font tags - use~~Hedaet Forum~~


Email: Password: Forgot Password?   Sign up
Are you Ads here? conduct: +8801913 364186

Forum Home >>> HTML Code >>> HTML code is easy to learn/সহজ এইচটিএমএল কোড শিখুন-9 (Font tags - use

murad
VIP Member
Total Post: 155

From:
Registered: 2012-04-14
 

Font tags - use
HTML table to present the document to the font type, font size, etc., are used for the <font> font tag. <font size=\"5\" face=\"Tahoma\" color=\"red\"> Bangladesh is a beautiful country. </ font> Here, size = \"5\" is part of a font tag attribute, which is published in Bangladesh is a beautiful ilimenta country. Article size should be. The face = \"Tahoma\" will be published in an article Tahoma font and color = \"red\" in an article published by the color red.

Example Program below.
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
ফন্ট ট্যাগ -এর ব্যবহার
HTML এর ডকুমেন্টকে সুন্দরভাবে উপস্থাপন করার জন্য ফন্টের ধরন, ফন্টের আকার ইত্যাদির জন্য <font> ফন্ট ট্যাগ ব্যবহার করা হয়। <font size=\"5\" face=\"Tahoma\" color=\"red\"> Bangladesh is a beautiful country.</font> এখানে size=\"5\" অংশটি হল font ট্যাগের একটি এট্রিবিউট, যা প্রকাশ করছে ইলিমেন্ট অর্থাৎ Bangladesh is a beautiful country. লেখাটির সাইজ কেমন হবে। এছাড়া face=\"Tahoma\" প্রকাশ করছে লেখাটির font হবে Tahoma এবং color=\"red\" দ্বারা প্রকাশ করছে লেখাটির রং হবে লাল।

উদাহরণ প্রোগ্রাম
<html>
<head>
<title> www.hedaet.com</title>
</head>
<body bgcolor=\" green\">
<font size=\"2\" face=\"Verdana\">
This is a paragraph.
</font>
<br />
<font size=\"5\" face=\"Tahoma\" color=\"red\" >
Bangladesh is a beautiful country.
</font>
</body>
</html>