HTML NOTES
HTML NOTES
-----------
<ol type="A">
<ol value="50">
<dl>
<dt>
<dd>
--------------------------------------------------------------
<span> <كلمة/span> يعزل الكلمة
--------------------------------------------------------------
<hr> يشد حط عنصر بلوك
-----------------------------------------------------------
<div> is a container
متستخدم الديف للنصوص استخدم البراجراف
------------------------------------------------------------
HTML ENTITIES (search for it)
EX: <p>-- <p>--- it prints <P>
-------------------------------------------------------------
SEMANTIC ELEMENTS (search for it)
<header></header>
<nav>navigation bar</nav>
<section> website content</section>
<aside>side bar</aside>
<article><article>
<footer></footer>
<figure>
<img src="" alt="">
<figcaption> ....</figcaption>
</figure>
---------------------------------------------------------------
AUDIO
<audio controls / autoplay / loop / muted>
<source src="media/..." type="">
<source src="media/..." type="">
your browser doesn't support audio tag
</audio>
--------------------------------------------------------------
video
<video controls / width="" hight="" / autoplay / loop / muted / poster="media/...">
<source src="" type "" >
<track src="my_file.vtt" kind="subtitles" srclang="en" label"english" >
<preload> search for it
your browser doesn't support audio tag
</video>
--------------------------------------------------------------
<Form>
<label> User name</label>
<input type="text"or "password">(inline block self closing)
<input type="submit" value="save or >"حفظ
</form>
-------------------
required
<label> User name</label>
<input type="text" required>
------------------
place holder
------------------------
Email
<input type="email" required placeholder="E-mail">
-----------------------------
2:45:08