
👋 Oi, mga repapips, Brian Dys here! I love music, photography, and creative stuff like UX design and art. This is a place where I collect my thoughts and works. Apart all these, I’m Jaycelle’s better half and Bryce’s dad. 🥰
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>
See the Pen RE:Creation No. 1: Google | HTML (Round 3) by Brian Dys (@briandys) on CodePen.
Now, we’re ready for CSS!