Link in the chat panel
(not the Q&A panel)
Click Raise Hand ✋ to be promoted to panelist)
Tim Berners-Lee, 1991
<window>
∟ <document>
∟ <head>
∟ <script>
∟ <body>
∟ <div>
∟ <form>
∟ <img>
1. Close every tag with an "end angle" >
<div>
2. Close start tags with an "end tag" that has a slash /
<div>Welcome to my page!</div>
World Wide Web (W3) Consortium, 1996
/* A "tag" style applies to every block of text. */
div {
font-family: verdana ;
}
/* a "class" style applies to all "cat" divs. */
.cat {
width: 100px ;
}
/* An "id" style applies to a unique "cat" div. */
#grumpy {
color: red ;
}
/