RE:Creation No. 1: Google | HTML (Round 3)

Summary

Basic HTML Document Markup

The first component of the markup is the doctype that tells the browser to render the HTML document in standards mode (W3C and IETF standards). <html> marks up the web page; the language attribute denotes the language the web page is written in; <head> contains meta information of the web page; <title> marks up the name of the web page—which also appear in the browser title bar; <body> marks up the web page content that is usually perceivable to users.

<!doctype html>
<html lang="en">
    <head>
        <title>Google</title>
    </head>
    <body>
        [...]
    </body>
</html>

Demo

See the Pen RE:Creation No. 1: Google | HTML (Round 3) by Brian Dys (@briandys) on CodePen.

Now, we’re ready for CSS!

Next Round


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *