Please enable JavaScript.
Coggle requires JavaScript to display documents.
Web Dev (Webpage (Behavior (JavaScript (Use (limited: cant access local…
Web Dev
Webpage
Behavior
JavaScript
Use
limited: cant access local files, cant access database or hardware --> no security risk
is a scripting language, can't write standalone app, only works inside another app: the web browser
-
Content
HTML
-
Paragraphs
-
-
<div> text or other HTML, primarily used to DIVIDE HTML documents into sections
-
<a> means anchors. Inside the opening a tag there is href, which stands for "reference." This is called an attribute
list: <ul> = unordered list, <ol> = ordered list. list item is <li>
-
Presentation
CSS
ruleset
-
= a selector + a declaration block
attribute
IDs should be used sparingly (an HTML element can only have 1 id and id can only be used once per page)
class can be used for as many HTML elements as we want. an HTML element can be assigned multiple classes separated by spaces
-
-
-