They say life has a way of messing with you. You don't always have the ability to understand what's going on in life. It will screw with you long before you are able to grasp what is going on. But that's supposed to be okay with it all. I don't know how it's meant to be okay, but that's what it is doing and we are but waiting for something to come along and everything else will become whatever it needs to become. So don't allow it to be what it wants to be, let it be what it doesn't want to be. Make it angry, make it upset, don't allow it to become more than important.
Every website has certain elements that are needed in order for it to be an HTML document.
Here's the typical layout for a simple website.
<html>
<head>
<title>Page Title<title>
</head>
<body>
</body>
</html>
Each of the words surrounded by < and > are called tags. The page content that you want to display goes inside the body tag. Most HTML tags have a matching opening and closing tag.
There are doctypes that you can place at the top of your HTML pages as well. Doctypes help make sure that you are using the correct set of tags and aren't using any deprecated tags (tags that are no longer part of the HTML spec). You can always verify your website against an HTML validator. The validator checks which doctype you choose and then checks it against your HTML document.
Comments
Post a Comment