content has been added

pull/3/head
asabeneh 5 years ago
parent 29d6a0efe4
commit f6c76c7117

@ -740,10 +740,10 @@ Congratulations! You have completed Day 3 challenge
1. What is the acronym DOM stands for? 1. What is the acronym DOM stands for?
2. What is the root of the DOM tree? 2. What is the root of the DOM tree?
3. What are the children of *html* tag 3. What are the children of _html_ tag
4. How many children can the head have? 4. How many children can the head have?
5. How many children can the body have? 5. How many children can the body have?
Make a DOM tree of the following HTML code Make a DOM tree of the following HTML code
```html ```html
<!DOCTYPE html> <!DOCTYPE html>
@ -786,35 +786,35 @@ HTML elements are like a box. Some elements take the whole width of the view por
List of blocking elements: List of blocking elements:
```sh ```sh
<address> <address></address>
<article> <article></article>
<aside> <aside></aside>
<blockquote> <blockquote></blockquote>
<canvas> <canvas></canvas>
<dd> <dd></dd>
<div> <div></div>
<dl> <dl></dl>
<dt> <dt></dt>
<fieldset> <fieldset></fieldset>
<figcaption> <figcaption></figcaption>
<figure> <figure></figure>
<footer> <footer></footer>
<form> <form>
<h1>-<h6> <h1></h1> to <h6></h6>
<header> <header></header>
<hr> <hr />
<li> <li></li>
<main> <main></main>
<nav> <nav><nav>
<noscript> <noscript></noscript>
<ol> <ol></ol>
<p> <p></p>
<pre> <pre></pre>
<section> <section><section>
<table> <table></table>
<tfoot> <tfoot><tfoot>
<ul> <ul><ul>
<video> <video></video>
``` ```
List of non-blocking elements List of non-blocking elements
@ -823,6 +823,7 @@ List of non-blocking elements
<a> <a>
<abbr> <abbr>
<acronym> <acronym>
<audio>
<b> <b>
<bdo> <bdo>
<big> <big>
@ -897,7 +898,7 @@ I am <small>a smaller text </small>
I am <del> deleted text </del> I am <del> deleted text </del>
My favorite language is not <del>Python</del>. It is <ins>JavaScript</ins> My favorite language is not <del>Python</del>. It is <ins>JavaScript</ins>
2H<sub>2</sub> + O<sub>2</sub> = 2H<sub>2</sub> O<sub></sub> 2H<sub>2</sub> + O<sub>2</sub> = 2H<sub>2</sub> O<sub></sub>
2<sup>10</sup> = 1024 2<sup>10</sup> = 1024
<pre>I like to make break her <pre>I like to make break her
I like to start a new line I like to start a new line

Loading…
Cancel
Save