Life is an amazing experience to behold at times. Other times it can be a bit of a nightmare. I guess it all depends on the day, now doesn’t it? Yeah, something like that. Who knows what this life will bring about. I for one don’t know. That’s the big secret behind this life I suppose. But life doesn’t have to be mysterious. Trying to figure out how this life work sat times- can be a nightmare. However all is not lost if you can have hope in something that will make life that much better. If we constantly allow our own thoughts and feelings to fight against us, we will never be better than we currently are. It’s easier said than done naturally. I am my own worst enemy, my worst critic. That’s simply how this life treats me at times. Not much else to comment about that. Am I playing the victim or simply stating the facts? Who can say for sure? I personally feel I’m just telling it like it is, nothing more. Sometimes I can’t determine my own thoughts from that of psychosis . Parts o...
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