چکیده مطالب HTML در یک نگاه

چاپ

چکیده مطالب html در یک نگاه

Wiki

خلاصه ای از مطالب ارائه شده در مورد HTML در زیر ارائه شده است. آنرا چاپ کنید، تا کنید و در مکانی امن قرار دهید.

تگ های اصلی یک سند HTML

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

تگ عنوان در HTML

Wiki

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

تگ های متن در HTML

Wiki

<p>This is a paragraph</p>
<br /> (line break)
<hr /> (horizontal rule)
<pre>This text is preformatted</pre>

تگ های فرمت بندی متن در HTML

Wiki

<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>

تگ لینک در HTML

Wiki

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>
Mailto link:
   <a href="mailto:این آدرس ایمیل توسط spambots حفاظت می شود. برای دیدن شما نیاز به جاوا اسکریپت دارید">Send e-mail</a>
Bookmark:
<a name="tips">Tips Section</a>
<a href="#tips">Jump to the Tips Section</a>

تگ لیست های نامرتب در HTML

Wiki

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

تگ لیست های مرتب در HTML

Wiki

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

تگ لیست های تعریفی در HTML

Wiki

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

تگ جدول در HTML

Wiki

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

تگ تصویر در HTML

Wiki

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

تگ Styles در HTML

Wiki

<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>

تگ iframe در HTML (صفحه ای داخل صفحه جاری)

Wiki

<iframe src="/demo_iframe.htm"></iframe>

تگ فرم در HTML (ارسال اطلاعات به سرور)

Wiki

<form action="http://www.example.com/test.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>

کاراکترهای رزرو شده در HTML

Wiki

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