Monday, July 15, 2013

HTML Chapter 15 _ Quick List

HTML Basic Document


<!DOCTYPE html>
<html>
<head>
<title>Title of document goes here</title>
</head>
<body>
Visible text goes here...
</body>
</html>

Basic Tags

<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>

<p>This is a paragraph.</p>
<br> (line break)
<hr> (horizontal rule)
<!-- This is a comment -->

 

Formatting


<b> Bold text </b>
<strong> Important text </strong>
<em> Emphasized text </em>
<i> Italic text </i>
<small> Smaller text </small>
<sub> (subscripted text) </sub>
<sup> (superscripted text) </sup>

Links


Ordinary link: <a href="http://www.example.com/">Link-text goes here</a>
Image link: <a href="http://www.example.com/"> <img src="URL" alt="Alternate Text"> </a>
Mail to link: <a href="mailto:webadmin@example.com">Send e-mail</a>

Images


<img src="URL" alt="Alternate Text" height="42" width="42">

Styles/Sections


<style type="text/css">
h1 {color:red;}
p {color:blue;}
</style>

<div>A block-level section in a document</div>

<span>An inline section in a document</span>

Unordered list


<ul>
  <li>Item</li>
  <li>Item</li>
</ul>

Ordered list


<ol>
  <li>First item</li>
  <li>Second item</li>
</ol>

Definition list


<dl>
  <dt>Item 1</dt>
    <dd>Describe item 1</dd>
  <dt>Item 2</dt>
    <dd>Describe item 2</dd>
</dl>

Tables


<table border="1">
  <tr>
    <th>table header</th>
    <th>table header</th>
  </tr>
  <tr>
    <td>table data</td>
    <td>table data</td>
  </tr>
</table>

Forms


<form action="demo_form.asp" method="post/get">
<input type="text" name="email" size="40" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit" value="Send">
<input type="reset">
<input type="hidden">
<select>
<option>Apples</option>
<option selected="selected">Bananas</option>
<option>Cherries</option>
</select>
<textarea name="comment" rows="60" cols="20"></textarea>
</form>

Entities


&lt; is the same as <
&gt; is the same as >
&#169; is the same as ©


HTML Chapters မ်ားျပီးပါျပီး။ HTML tags မ်ားအေၾကာင္းကို HTML reference post မွာ brief လုပ္ေပးမွာပါ။ ဆက္လက္ျပီး CSS ကို ေလ့လာဖို. တိုက္တြန္းပါတယ္။ HTML ႏွင့္ CSS တို.ကို သိရွိနာလည္ပါက မိမိစိတ္ၾကိဳက္ idea တို.ျဖင့္ ကိုယ္ပိုင္ Website မ်ားဖန္တီးႏိုင္မွာပါ။ လာေရာက္ ဖတ္ရွဳသူမ်ား အားလံုးကို ေက်းဇူးအထူး တင္ရွိပါတယ္ဗ်ား။

No comments:

Post a Comment