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.
testRepository/08_Semanthic_web_elements.html

65 lines
2.3 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>Semanthic tag Element</title>
</head>
<body>
<!--
در نسخه ی جدید ایجاد شده است.
باعث خوانایی صفخات وب میشود
div:
تگ های دیو همیشه در بر گیرنده ی یک سری المان دیگر هستند wrapper
aside:
برای ساید بار استفاده میشود کناره های صفخات وب استفاده مبشود.
block level
section:
هر جا که احساس کردید که میخواهید بخش بندی انجام دهید باید از این تگ استفاده شود
main:
محتوای اصلی سایت را درون این تگ قرار میدهیم
figure:
بخشی از سایت یا بخشهایی از آن که تصویر در آن موجود است پیشنهاد شده که از این تگ استفاده شود
article:
هر جا که یک سری متن و توضیحات بود
و برای فرمت دهی متن بود در این تگ باید گذاشته شود
time:
برای نشان دادن ساعت استفاده میشود اما معنای خاصی ندارد
صرفا برای موتور های جست و جو است
-->
<div></div>
<span></span>
<section></section>
<nav>
<a href="">first</a>
<a href="">second</a>
<a href="">third</a>
</nav>
<aside></aside>
<header></header>
<footer></footer>
<main></main>
<figure>
<img src="sourse" alt="">
<figcaption>توضیحات در مورد تصویر</figcaption>
</figure>
<article></article>
<details>
<summary>
Lorem ipsum dolor sit amet.
</summary>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugit consequatur atque recusandae consequuntur rem
explicabo alias blanditiis quibusdam velit commodi.
</p>
</details>
<mark>highlighted text</mark>
<time>uses to show the time</time>
</body>
</html>