Skip to content

Commit d818594

Browse files
committed
added notes
1 parent e6175dc commit d818594

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

notes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,20 @@ The files are sent as before and the browser renders the site in the same way.
1313
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.
1414

1515
---
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.

0 commit comments

Comments
 (0)