HTML
Everything in html makes sense when understood. haha but that's true with everything. HTML stands for Hyper Text Markup Language. Meaning that you can markup a project using pure language.
To the right is a simple website code in html with just the words "Hello world!". This is called a tag "<>". Tags open and close statements. Everything between<body> and </body> in part of the body. You see the "/" in the tag means end. See when you say <h3> that means header text size 3. When you say: </h3> . That means end the header text in size 3. Get it? When you say <p>. That means paragraph. The line Created by using: <a href> meaning a html reference. This is how to make a comment. This creates a horizontal line. |
<!DOCTYPE html> <html> <body> <h3> Hello world! </h1> </body> </html> <h1> Hello world! </h1> <p> This is a test run. These are examples! </p> <a href="http://www.simplegamings.com"> This is a link that sends you to this website! </a> <!--And this is a comment--> <hr |