×
Clear all filters including search bar
Valeri Tandilashvili's HTML Notes
<iframe src="https://amazon.com">sorry</iframe>
<iframe>
is used to display another web site inside our web page. Also youtube videos can be embedded into iframes- sessionStorage()
- localStorage()
Local vs. Session
- Session Storage is destroyed once the user closes the browser
- Local Storage stores data with no expiration date
Note: You need to be familiar with basic JavaScript in order to understand and use the API
Value
Specifies how much of the task has been completed
Max
Specifies how much work the task requires in totalStatus: <progress min="0" max="100" value="35">
</progress>
<header>
and <footer>
elements can be used in <article>
. Example:
<article>
<header>
<h2>some header</h2>
</header>
<p> some paragraph</p>
<p> some other paragraph</p>
<footer>
written by Quentin Watt
</footer>
</article>
<style type="text/css">
align
attribute is removed from p
elementAlt
attribute is necessary for element img
<fieldset>
tag should contain legend
tag in order the fieldbox to have title
<form action="/action_page.php">
<fieldset>
<legend>Personalia:</legend>
<label for="fname">First name:</label><input type="text" id="fname" name="fname"><br><br>
<label for="lname">Last name:</label><input type="text" id="lname" name="lname"><br>
</fieldset>
</form>