Today i'm gonna show you some dummy tricks that can be your first step to the world of programming.
Yes, Programming
You must have heard something about HTML.
HTML is the language used to create webpages and it is shortened from HyperText Markup Language.
So, learn how you can print your own name and bio simply just by putting these code :
Open up any text editor, Notepad would be the way in windows.
Then type these lines of codes :
<!doctype html>
<html>
<head>
<title> My first HTML Page</title>
</head>
<body>
<h1>Hi, I love to create websites.</h1>
</body>
</html>
Like:

