وصف الدرس
ال Code الموجود في الدرس
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>Book Store</title>
<meta name="description" content="This Is Our Book Store" />
</head>
<body>
<!--
b => Bold
strong => Bold => Important Text
i => Italic
em => Emphasized
mark => Marked Text Or Highlighted Text
u => Underline
small => Smaller text
del => Deleted Text
ins => Inserted Text
sub => Subscript
sup => Superscript
-->
<h1>Book Store</h1>
<p>This Is My <b>Book Store</b>, Welcome</p>
<p>This Is My <strong>Book Store</strong>, Welcome</p>
<p>This Is My <i>Book Store</i>, Welcome</p>
<p>This Is My <em>Book Store</em>, Welcome</p>
<p>This Is My Book Store, <mark>Welcome</mark></p>
<p>This Is My Book Store, <u>Welcome</u></p>
<p>This Is My Book Store, <small>Welcome</small></p>
<p>This Is My <del>Book Store</del>, Welcome</p>
<p><del>$100</del> $80</p>
<p>This Is My <ins>Book Store</ins>, Welcome</p>
<p>h<sub>2</sub>o</p>
<p>2<sup>2</sup></p>
</body>
</html>