0% found this document useful (0 votes)
3 views

HTML NOTES

Uploaded by

Omar Elabd
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

HTML NOTES

Uploaded by

Omar Elabd
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

1:08:11 html

-----------

ctrl + ‫ ظ‬-- comment


---------------------------------------------------------
<b> just bold
<strong> important and bold ; very useful in search engines
--------------------------------------------------------------
<i> just italic
<em> important and italic ; very useful in search engines
-----------------------------------------------------------------
<del> for delete content ; very useful in search engines ; remove price
-------------------------------------------------------------------------
<ins> & <u>
=========================================================================
in <a>
target = "-blank" open link in new page
titile = "----" what appares when you stand on the link
herf="#in the page"
herf="mail to : -----"
--------------------------------------------------------------------------

<img src="img/home/ llll.png"


../ = back

<ol type="A">
<ol value="50">

<dl>
<dt>
<dd>
--------------------------------------------------------------
<span> ‫<كلمة‬/span> ‫يعزل الكلمة‬
--------------------------------------------------------------
<hr> ‫يشد حط عنصر بلوك‬
-----------------------------------------------------------
<div> is a container
‫متستخدم الديف للنصوص استخدم البراجراف‬
------------------------------------------------------------
HTML ENTITIES (search for it)
EX: <p>-- &lt;p&gt;--- 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

<input type="text" required placeholder="username">


‫ممكن تكون رسالة للشخص فى الحقل‬
<input type="password" required placeholder="write complex password">

------------------------
Email
<input type="email" required placeholder="E-mail">

-----------------------------
2:45:08

You might also like