You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
3.5 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<p>
some thing
</p>
<h1>
<span>
</span>
</h1>
<br>
<hr>
<div id="something">
<strong class="text primary">
some thing !!!
</strong>
<a href="google.com">google</a>
</div>
<!-- attributes:
all html elements can have attributes,
attributes provide additional information about an element
attributes usually come in name/value pairs like : name="value"
inline and block level elements:
block : fills the width
inline : contains the content
-->
<div>
block element
</div>
<div>
inline element
</div>
<!-- heading tags -->
<h1>element</h1>
<h2>element</h2>
<h3>element</h3>
<h4>element</h4>
<h5>element</h5>
<h6>element</h6>
<hr>
<!-- lists -->
<ul>
<li>
<a href=""></a>
</li>
</ul>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>
<hr>
<!-- ordered list -->
<ol>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ol>
<hr>
<strong>important for the browser</strong>
<b>not important for the browser</b>
<i>italic and not imortant for the browser</i>
<em>italic and important for the browser and seo</em>
<small>small font size</small>
<br>
<mark>
higlights the text default is yellow.
</mark>
<br>
<p>web <del>design(drows line on the word)</del> course</p>
<br>
<p>draws <ins>underline</ins> underline</p>
<br>
<p>brings the <sub>text</sub> down</p>
<!-- html Quatation Elements -->
<q>this is some text</q>
<blockquote>
this is some text
</blockquote>
<abbr title="something">
some thing more
</abbr>
<address>
<!-- اطلاعاتی در مورد نویسنده ی یک اثر -->
مدیر سایت من هستم
به نشانی اینترنتی : www.somethng.com
</address>
<p>
<cite>برای نشان دادن نام یک اثر برای مثال</cite>
</p>
<bdo dir="rtl">ساختار متن را عوض میکند</bdo>
<!-- table
برای پنل های کاربری استفاده شود
-->
<table>
<thead>
<caption>لیست کاربران وبسایت</caption>
<tr>
<th>user Id</th>
<th>user name</th>
<th>name</th>
<th>email</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>ahamd</td>
<td>ahamd 110</td>
<td>ahamd@gmail.com</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>جمع کل </td>
<td>1000000</td>
</tr>
</tfoot>
</table>
<!-- برای عنوان اسلاید یا عنوان یک عکس از caption -->
</body>
</html>