Hey Steemians!
Today, I finished my first lesson on Codecademy! In this series of posts, I'll share my "code" journey with you. I hope you like it!
Today I learned:
HTML = HyperText Markup Language
Document type declaration: <!DOCTYPE html>
Opening and Closing <html>
</html>
tags
Head element <head>
</head>
Title element <title>
</title>
Body element <body>
</body>
Boilerplate code
The term "boilerplate code" is used to describe the basic HTML code required to begin creating a web page.
<!DOCTYPE html>
<html>
<head>
<title>wh00zy</title>
</head>
<body>
</body>
</html>