[001] My first day on Codecademy | HTML & CSSsteemCreated with Sketch.

in blog •  7 years ago 

CC 001.png

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>

Cheers!

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!