☻ Do Coding - HTML ☻

HTML is a markup language, THE markup language, it is the main language for making a web page.

By tradition, the first thing to do is to make something that says:

Hello, world!

Remeber, have fun with it, never get stressed and always ask questions.

If you are coder, or programmer, you always ask questions.

Otherwise you will never learn, or never keep up.

Have fun coding

The code to say "Hello World!".

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Hello World!</title> </head> <body> <p>Hello World!</p> </body> </html>

If you are new to this, it will look confusing,

but in just a few minutes you will get the gist of it.

We will go through it line by line.

Make it work.

Create a folder, maybe something like, "documents\docoding\html"

Then copy the above code into a file, call it index.html, this is a default name, you don,t have to use it, but it keeps things simple for now.

Now, open the location of the file in your browser. Now, open it by double clicking or however you do it.

There you go, your browser should say Hello World!

If it doesn't, go through the steps again or email me, if I can help I will.

Try messing about with it though, you can change "Hello, World!", to anything you want.

Return To Home Page.

Send email