css_part6
External CSS এ Class তৈরী
অনান্য External CSS ফাইল তৈরীর মত
এটিও একই নিয়মে তৈরী করতে হয়। Style অংশের কোড গুলি আলাদা ফাইলে লিখে একটি নাম দিয়ে .CSS নামে সেভ করতে হবে এবং HTML ফাইলের <head> সেকশনে যথারীতি Link ফাইলটি Call করতে হবে href কমান্ডের
মাধ্যমে।
নিচের মত কোডিংসহ একটি ফাইল তৈরী করে style010.css নাম দিয়ে সেভ করুন।
body {background-color:PowderBlue;}
.red
{color:red;font-size:20px;}
.green {color:green;font-size:25px;}
.blue {color:blue;text-align:center;}
.magenta {color:magenta;text-align:center;}
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন।
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet"
type="text/css"
href="style010.css">
</head>
<body>
This is Normal body text.
<p class="blue"> This is
First para</p>
<h1 class="red">Word
Processor</h1>
Microsoft Word is a word processing
program.
It is use to Write application, News
Letter,
Writting Pad, etc.
<p class="green"> This is
Second para</p>
<h1 class="green">Spread
Sheet</h1>
Microsoft Excel is a Spread Sheet program.
Its devided by Row and Column. You can make
chart using Excel.
<p class="magenta"> This is
Third para</p>
<h1 class="blue">
Database</h1>
Microsoft Access is a Spread Database
Managementprogram. It is use to create and
analise table and database.
</body>
</html>
ব্রাউজার দিয়ে
খুললে নিচের মত ফলাফল পাওয়া যাবে।
নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন।
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {background-color:PowderBlue;}
p#red
{color:red;font-size:20px;}
p#green {color:green;font-size:25px;}
h1#blue {color:blue;text-align:center;}
h1#magenta
{color:magenta;text-align:center;}
</style>
</head>
<body>
This is Normal body text.
<p id="red"> This is First
para</p>
<h1 id="blue">Word
Processor</h1>
Microsoft Word is a word processing
program.
It is use to Write application, News
Letter,
Writting Pad, etc.
<p id="green"> This is
Second para</p>
<h1 id="magenta">Spread
Sheet</h1>
Microsoft Excel is a Spread Sheet program.
Its devided by Row and Column. You can make
chart using Excel.
<p> This is Third para</p>
<h1> Database</h1>
Microsoft Access is a Spread Database Managementprogram.
It is use to create and analise table and
database.
</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...
Next_