Life tends to come and go and we don’t have the ability to see what’s all going on there. Life will always continue to be whatever it wants to be, we don’t have the ability to do what we want. It’s life after all. Nothing beats wanting to escape this life, but we can’t always do that. There’s always something in the way that may drive us crazy at times. It’s life after all, there’s nothing wrong with that thought process, but it will be crazy if it is. Talk about crazy times that come along and we don’t have the ability to actually see what’s going on in this life. Ya know? Yeah, that’s what I was thinking about. It’s life, we don’t always have the ability to grasp it fully. That’s life.
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