ခုလိုေကာ္နက္ရွင္ပိန္းတဲ့ ၾကားက၀င္ေရာက္ဖတ္ရႈ.ေပးတာ အထူးေက်းဇူးတင္ပါသည္

Tuesday, June 26, 2012

HTML Introduction

HTML Introduction
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

This is Print
My First Heading
My first paragraph

HTML headings are defined with the <h1> to <h6> tags.
<!DOCTYPE html>
<html>
<body>
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
</body>
</html>

This is Print
This is heading 1 ( ေနာက္ကေရးထားတဲ့ ဂဏန္းသည္ ေဖာင့္အရြယ္အစားျဖစ္သည္ )
This is heading 2
This is heading 3
This is heading 4
This is heading 5
This is heading 6

HTML Paragraphs
<!DOCTYPE html>
<html>
<body>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
</body>
</html>

This is Print
This is a paragraph
This is a paragraph
This is a paragragh

HTML links are defined with the <a> tag.
<!DOCTYPE html>
<html>
<body>
<a href="http://www.w3schools.com">
This is a link</a>
</body>
</html>

This is Print
This is a link (ဆိုက္လိပ္စာကုိကုိယ္စားျပဳပါတယ္)

HTML images are defined with the <img> tag.
<!DOCTYPE html>
<html>
<body>
<img src="w3schools.jpg" width="104" height="142" />
</body>
</html>

This is Print
( img src ထဲကလိပ္စာထဲကပံုကုိကိုယ္စားျပဳပါတယ္)

HTML Page Structure
<html>
<body>
<h1>This a Heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</body>
</html>

HTML Text Formatting
<!DOCTYPE html>  
<html>
<body>
<p><b>This text is bold</b></p>
<p><strong>This text is strong</strong></p>
<p><big>This text is big</big></p>
<p><i>This text is italic</i></p>
<p><em>This text is emphasized</em></p>
<p><code>This is computer output</code></p>
<p>This is<sub> subscript</sub> and <sup>superscript</sup></p>
</body>
</html>

This is Print
This text is bold
This text is strong
This text is big
This text is italic
This text is emphasized
This is computer output
This is subscript and superscript

No comments:

Post a Comment

Template by : kendhin x-template.blogspot.com