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

Saturday, September 3, 2016

css_part15



Text Transformation
এটি দ্বারা টেক্সটকে ছোটহাতের (lowercase), বড়হাতের (uppercase) বা ওর্য়াডের প্রথম অক্ষর বড় হাতের (Capitalize) করা হয়। প্রোপার্টি হচ্ছে text-transformation
এখন নিচের মত প্রোগ্রাম তৈরী করে ব্রাউজ করুন

নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন। 
<!DOCTYPE html>
<html>
<head>
<head>
<title>CSS Text Style properties</title>
<style>
h1{text-align:center;text-decoration:blink;text-transform:uppercase;}
h4 {text-align:center;text-transform:capitalize;}
p.left {text-align:left;}
p.right {text-align:right;}
p.just {text-align:justify;}
.line{text-decoration:line-through;text-transform:lowercase;}
.over{text-decoration:overline;}
.under{text-decoration:underline;}
</style>
</head
<body>
<h1>Nova Computer</h1>
<h4> 50 aziz super market <br />
sahabag, dhaka </h4>
<hr />
<p class="left">Date........</p>
<p class="right">Ref........</p>
<p class="left">
To <br />
Managing Director <br />
<a class="line"> Nova Computer, Kushtia </a> <br />
Nova Computer, Dhaka.<br />
Sub: <a class="under">Application to get a New Lesson Note</a> <br /></p>
</p>
<p class="left">
Sir,<br /></p>
<p class="just">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand the class. <br /></p>
<p class="just">
So I would be grateful if you kindly permit me another one new lesson note. <br /></p>
<br />
<p class="left">
<a class="over">Your faithfully </a><br />
Shopnil Ashraf Shopno <br />
Roll No FND00353B   </p>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।



Text Indentation
কোন প্যারার প্রথম লাইন একটু ডান থেকে শুরু করার জন্য এটি ব্যবহৃত হয়। প্রথমে ফাঁকা অংশের জন্য Pixel ব্যবহার করা হয় যেমন a{text-indent: 50px;}। তবে px ছাড়াও pt, cm, em, % দ্বারাও Value নির্ধারণ করা যায় HTML অংশে এই ইউনিটগুলির বিসত্মারিত ব্যাখ্যা দেওয়া আছে।

নিচের মত কোডিংসহ আরও একটি HTML ফাইল তৈরী করুন। 
<!DOCTYPE html>
<html>
<head>
<head>
<title>CSS Text Style properties</title>
<style>
h1 {text-align:center;text-decoration:blink;text-transform:uppercase;}
h4 {text-align:center;text-transform:capitalize;}
p.left {text-align:left;}
p.right {text-align:right;}
p.just {text-align:justify;}
.line{text-decoration:line-through;text-transform:lowercase;}
.over{text-decoration:overline;}
.under{text-decoration:underline;}
.indent{text-indent:50px;}
</style>
</head
<body>
<h1>Nova Computer</h1>
<h4> 50 aziz super market <br />
sahabag, dhaka </h4>
<hr />
<p class="left">Date........</p>
<p class="right">Ref........</p>
<p class="left">
To <br />
Managing Director <br />
<a class="line"> Nova Computer, Kushtia </a> <br />
Nova Computer, Dhaka.<br /> </a>
Sub: <a class="under">Application to get a New Lesson Note</a> <br /></p>
</p>
<p class="left">
Sir,<br /></p>
<p class="just indent">
I beg most respectfully that I an a student of Nova Computer at Foundation Course. My name is Shopnil Ashraf Shopno, Roll No - FND00353B. Unfortunately I have lost my Lesson Note of foundation part 1. This is horrible condition to me to understand theclass.<br /> </p>
<p class="just indent">
So I would be grateful if you kindly permit me another one new lesson note. <br /></p>
<br />
<p class="left">
<a class="over">Your faithfully </a><br />
Shopnil Ashraf Shopno <br />
Roll No FND00353B </p>
</body>
</html>
ব্রাউজার দিয়ে খুললে নিচের মত ফলাফল পাওয়া যাবে।
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