know yourselves. information, computer, 7 wonders, various.

Friday, March 13, 2020

css_part37




 
সকল ব্রাউজারে প্রর্দশন উপোযোগী করা
আমরা এর আগে দেখেছি অতিরিক্ত একটি Div (wrapper) তৈরী করে এর মধ্যে মুল <div> টি দেওয়া হয়েছে এতে সকল ব্রাউজারে প্রর্দশন সহজ হবে। এছাড়া <body> ট্যাগের সাথে Margin Padding করে দিলে ব্রাউজারে ডিফল্ট সেটিং নষ্ট হয়ে একটি নিউট্রাল সেটিং তৈরী হবে।

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head><title> CSS margin and float properties </title>
<style>
body{margin:0; padding:0;}
.wrapper {position:relative; width:100%;}
.right {position:absolute; right:0px; width:400px;
background-color:#b0e0e6; }
</style>
</head>
<body>
<div class="wrapper">
<div class="right">
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
<p>Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.Look! This ia a paragraph with centered align. I am some sample text.</p>
</div></div></body></html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।



ইমেজ গ্যলারি তৈরী করা
আমরা এখন একটা ইমেজ গ্যালারী তৈরী করবো। আমরা ইতিমধ্যেই float ব্যবহার করে একটি ইমেজ তৈরী করেছি। এই গ্যালারীতে caption থাকবে এবং ইমেজ ক্লিক করলে বড় একটি ইমেজ আসবে । আমরা মোট ৪টি ইমেজ নিয়ে কাজ করবো। ইমেজের Thumbnailএ কিলক করলে যে ইমেজগুলি আসবে সেই ৪টি ফাইল আমরা প্রথমে তৈরী করবো, এখানে অরিজিন্যাল Imageটি আনবো । এখানে Back to Gallery নামে একটি লিংক থাকবে যেটি দিয়ে বার বার গ্যালারিতে ফিরে আসা যাবে। নিচের মত ৬টি প্রোগ্রাম তৈরী করুন।
Program_CSS118
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
<title> This is Photoshop book cover</title>
</head>
<body>
<div><h2><a href="Program_CSS118888.html">Back to Galaty</a></h2>
<img border="1" src="Photoshop.jpg"> <br />
Photoshop book</div>
</div>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।



<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
</head>
<body>
<div><h2><a href="Program_CSS119.html">Back to Galaty</a></h2>
<img border="1" src="Flash.jpg"> <br />
Flash book</div>
</div>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
</head>
<body>
<div><h2><a href="Program_CSS120.html">Back to Galaty</a></h2>
<img border="1" src="Office.jpg"> <br />
Office book</div>
</div>

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head>
</head>
<body>
<div><h2><a href="Program_CSS121.html">Back to Galaty</a></h2>
<img border="1" src="Illustrator.jpg"> <br />
Illustrator book</div>
</div>

Previous Post                                                                                           Next Post

  বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।

Book Name: Mastering Microsoft  Word
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... 

 cd


RELATED POST LINKS BELOW ********************************************
Next_


Part- 02:  Inline Style