File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,20 @@ The files are sent as before and the browser renders the site in the same way.
13
13
HTML is the content of the webpage. CSS is the styling of that content on the page. JS is the dynamic effects and data of the webpage.
14
14
15
15
---
16
+
17
+ ## HTML
18
+
19
+ HyperText Markup Language is a core language for structuring and describing the content of a page.
20
+
21
+ HTML uses _ elements_ to describe it's content.
22
+ Web browsers understand HTML and render the code as websites.
23
+
24
+ ### HTML Element
25
+
26
+ ` <p>HTML is a markup language</p> `
27
+ An element has an opening tag, the content and the closing tag.
28
+ If the content is another element it is called a child element and it is the parent element.
29
+
30
+ ### HTML Document Structure
31
+
32
+ Consists of a DOCTYPE declaration, the html tag which has two children elements called head and body.
You can’t perform that action at this time.
0 commit comments