diff --git a/readme.md b/readme.md index 60d8dc4..4dc39e4 100644 --- a/readme.md +++ b/readme.md @@ -54,6 +54,9 @@ - [HTML Table](#html-table) - [Day 10](#day-10) - [Lists](#lists) + - [Ordered List](#ordered-list) + - [Unordered List](#unordered-list) + - [Description List](#description-list) - [Day 11](#day-11) - [File Paths](#file-paths) - [Meta tags](#meta-tags) @@ -389,6 +392,7 @@ In this section, we will start writing the DOM tree of an HTML document or file. ### Declaration Before the root element, there is a declaration. This declaration tells the browser that the document is an HTML. Therefore, the browser render it to the way an HTML suppose to be rendered. + This is the code to declare an HTML. The declaration is not part of the DOM tree. ```html @@ -399,7 +403,7 @@ This is the code to declare an HTML. The declaration is not part of the DOM tree The _html_ element is the root of the DOM tree and is the parent of _head_ and _body_. -The DOM try has be wrapped by the html tag. +The DOM try has to be wrapped by the html tag. ```html @@ -1192,13 +1196,7 @@ To create a form, we use _form_ element and the _form_ element wrap other input ``` -You can see the output of the above code here. - -
+You can try the output of the above code on visual studio code. The HTML form code below can handle different kind of data. It handles almost any kind of data including file. @@ -1313,121 +1311,7 @@ The HTML form code below can handle different kind of data. It handles almost an ``` -The output the above form look like this - -