HTML त्वरित संदर्भ

CodeW3C.com से आए HTML त्वरित संदर्भ। इसे मुद्रित करके दैनिक उपयोग के लिए रख सकते हैं。

HTML बुनियादी दस्तावेज़

<html>
<head>
<title>दस्तावेज़ नाम यहाँ जाता है</title>
</head>
<body>
दृश्यमान पाठ यहाँ जाता है
</body>
</html>

पाठ तत्व

<p>यह एक पैराग्राफ है</p>
<br> (line break)
<hr> (horizontal rule)
<pre>This text is preformatted</pre>

तार्किक शैली

<em>This text is emphasized</em>
<strong>This text is strong</strong>
<code>This is some computer code</code>

भौतिक शैली

<b>This text is bold</b>
<i>This text is italic</i>

लिंक, एंकर, इमेज एलीमेंट

<a href="http://www.example.com/">This is a Link</a>
<a href="http://www.example.com/"><img src="URL"
alt="Alternate Text"></a>
<a href="mailto:webmaster@example.com">Send e-mail</a>A named anchor:
<a name="tips">Useful Tips Section</a>
<a href="#tips">Jump to the Useful Tips Section</a>

अनवर्गीकृत सूची

<ul>
<li>First item</li>
<li>Next item</li>
</ul>

वर्गीकृत सूची

<ol>
<li>First item</li>
<li>Next item</li>
</ol>

व्याख्यातांक सूची

<dl>
<dt>First term</dt>
<dd>Definition</dd>
<dt>Next term</dt>
<dd>Definition</dd>
</dl>

तालिका

<table border="1">
<tr>
  <th>someheader</th>
  <th>someheader</th>
</tr>
<tr>
  <td>sometext</td>
  <td>sometext</td>
</tr>
</table>

फ्रेम

<frameset cols="25%,75%">
  <frame src="page1.htm">
  <frame src="page2.htm">
</frameset>

फॉर्म

<form action="http://www.example.com/test.asp" method="post/get">
<input type="text" name="lastname"
value="Nixon" size="30" maxlength="50">
<input type="password">
<input type="checkbox" checked="checked">
<input type="radio" checked="checked">
<input type="submit">
<input type="reset">
<input type="hidden">
<select>
<option>एप्पल्स
<option selected>बानाना
<option>चेरीज़
</select>
<textarea name="Comment" rows="60"
cols="20"></textarea>
</form>

एंटी व्हाइड

< < के समान है
> > के समान है
© © के समान है

अन्य एलीमेंट

<!-- This is a comment -->
<blockquote>
किसी स्रोत से उद्धृत टेक्स्ट.
</blockquote>
<address>
एड्रेस 1<br>
एड्रेस 2<br>
शहर<br>
</address>

स्रोत : http://www.codew3c.com/html/html_quick.asp