Chicken poppy
Fashionably late
Codings fun i do it tooI do web coding, which is html, javascript, css, stuff like that. here's an example
<html>--this specifies the language so the browser knows how to read it
<head>----does not show on the webpage, just for the browser to interpret to itself
<title>Sample Page </title>----this is what appears on your tab, like rn "Calling all teenagers"
</head>-------stuff with a slash closes the line
<body>------tells browser that this is for the user to see
Hello users, this is a html page --------this is what you see on the page
</body>
</html>
make any sense?