css_part20
একাধিক Style প্রয়োগ
এতক্ষণ আমরা color, font-family, background-color, text-decoration ইত্যাদি ব্যবহার করে link এর Style তৈরী করেছি। এখন একসাথে একাধিক প্রোপার্টি ব্যবহার করে Class কল করার মাধ্যমে link কে Stylish করবো। নিচের মত প্রোগ্রাম তৈরী
করুন।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী
করুন।
<!DOCTYPE
html>
<!DOCTYPE
HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>CSS
Link Style properties all together </title>
<style>
a.color:link
{color:red;}
a.color:visited
{color:green;}
a.color:hover
{color:blue;}
a.fontsize:link
{color:red;}
a.fontsize:visited
{color:green;}
a.fontsize:hover
{font-size:150%;}
a.back:link
{color:yellow}
a.back:visited
{color:green;}
a.back:hover
{background:red;}
a.font:link
{color:red;}
a.font:visited
{color:green;}
a.font:hover
{font-family:Arial;}
a.line:link
{color:red;text-decoration:none;}
a.line:visited
{color:green;text-decoration:none;}
a.line:hover
{color:green;text-decoration:underline;}
</style>
</head>
<body>
<p><b><a
class="color" href="Program_CSS001.html"
target="_blank">changes color</a></b></p>
<p><b><a
class="fontsize" href="Program_CSS001.html"
target="_blank">changes font-size</a></b></p>
<p><b><a
class="back" href="Program_CSS001.html"
target="_blank">changes
background-color</a></b></p>
<p><b><a
class="font" href="Program_CSS001.html"
target="_blank">changes font-family</a></b></p>
<p><b><a
class="line" href="Program_CSS001.html"
target="_blank">changes text-decoration</a></b></p>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
Style Sheet ব্যবহারে list এর Style তৈরী করা
HTML অংশে আমরা লিষ্ট নিয়ে বিসত্মারিত আলোচনা করেছি। এখানে কিছুটা আলোকপাত করবো
এবং Style এর ক্ষেত্রে
ভিন্ন বিষয়গুলি বা অতিরিক্ত বিষয়গুলি নিয়ে আলোচনা করবো। আগেই বলেছি বর্তমানে
প্রচলিত লিষ্ট হচ্ছে দুই ধরণের ।(বাকী গুলো HTML 4 থেকে প্রযোজ্য নহে ) একটি হচ্ছে <ol> বা নামা^র যুক্ত (order বা numbered list) লিষ্ট এবং অন্যটি হচ্ছে <ul> বা বুলেট বা ইমেজ যুক্ত ( unordered বা buleted list) লিষ্ট। প্রতিটি লিষ্টে
একাধিক আইটেম থাকে এজন্য <li>…..</li> ট্যাগ ব্যবহার করা হয়।
Ordered list এর ব্যবহার ( list-style-type )
Ordered list গুলি Number বা letter দিয়ে লেখা হয়। এখানে কি ধরণের লিষ্ট হবে সেটি নির্ধারনের জন্য list-style-type
নির্ধারণ করে দিতে হয়। value গুলি হচ্ছে যেমন none, upper-roman, lower- alpha, decimal,(ডিফল্ট), armenian ইত্যাদি, এখন চট করে
নিচের মত একটি প্রোগ্রাম তৈরী করে ফেলুন।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী
করুন।
<!DOCTYPE
HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>CSS
List Style </title>
<style>
ol.a
{list-style-type:none;}
ol.b
{list-style-type:upper-roman;}
ol.c
{list-style-type:lower-alpha;}
ol.d
{list-style-type:decimal;}
ol.e
{list-style-type:armenian;}
</style>
</head>
<body>
<p>Ordered
lists:</p>
<ol>
<!for default value>
<li> Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
<ol
class="a">
<li>
Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
<ol
class="b">
<li>
Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
<ol
class="c">
<li>
Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
<ol
class="d">
<li>
Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
<ol
class="e">
<li>
Photoshop.</li>
<li>
Illustrator.</li>
<li>
Page Maker.</li> </ol>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
The
writer of this book has told that he has written this book with the
concept of "teach yourself". On the other hand, Web Design is a thing which is
interesting to learn. He has also told that the book is full of fan and
enjoyment so that a person can learn Web Design by himself by playing with
the example projects of this book. Book's CD Link below...
RELATED POST LINKS BELOW ********************************************
Next_