My reading notes
HTML, CSS, JS are parsed in the browser in order of HTML file goes first.
<link>
elements refering to an external CSS stylesheets. Then<script>
elements that link to external JS scripts.
Images can be found online and saved from there or you can copy the img url. Images should be checked for copyrights. Google has a license filter tool that can be used to check for cc0
String
let example = 'This is a string';
Number
let example = 5;
Variables
Varibles are containers that store info for later use. To declare a Variable we use the
let
keyword.
Attributes contain extra information about the element that won’t appear in the content.
<!doctype html>
<html>
<head>
<meta metadata lives here>
<title>this is a title</title>
</head>
<body>
<p>this is a pargraph</p>
</body>
</html>
The difference between <article>
& <section>
is that sections are more generic and a standalone section of a document. Articles are self-contained compositions
Basic elements in an HTML page ```