This life is here for a reason, we don’t have to say exactly what that reason is, we just have to believe in it no matter what happens in this life, we have to understand one thing. That thing is that we are not alone in the universe. I’m not saying there are aliens out there, but yeah there are aliens out there. It’s a concept that people have wondered about from time to time, there doesn’t appear to be anything else you can do but wonder what’s going on in the skies above us! There are so many things in this life that don’t always seem to matter, but you wish they would, at least that’s what I’d like to think would happen. I’m not sure that’s how this life is meant to be understood of course. If there’s anything in this life that doesn’t make sense, then it will always be there. It doesn’t have to make sense, that’s the absurdity of it all! Why should it make sense if there’s nothing to grasp from it all? I’m not sure I know the ansewr to that question. Such a life comes and goes an...
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