Girl Code, week 2: JavaScript
HTML CSS JavaScript
<body>
Girl Code
Girl Code is a coding courseβ¦
</body>
I define a document, like writing on a page π
I am a tree structure π²
My name is made from pointy letters, and I like pointy brackets <> π
p {
color: blue;
border: 10px solid red;
}
a {
text-decoration: underline;
}
I list rules for how to draw things:
colour, size, style ππππ
I make HTML look good π
My name is made from curly letters, and I like curly brackets { } π
function addStar() {
let star = createStarElement()
starContainer.appendChild(star)
}
starButton.addEventListener("click", addStar)
I make things happen β‘οΈ
I am step-by-step instructions π
I use round brackets, curly brackets, lots of different symbols actuallyβ¦ π
(I am NOT related to Java! π)