Heyy!
I'm back with an interesting Coding Language which is HTML!
Let's first have a brief view of why we shall know HTML🎭...
Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript. You can read more about HTML @Wikipedia
What is HTML?
- HTML stands for Hyper Text Markup Language
- HTML is the standard markup language for creating Web pages
- HTML describes the structure of a Web page
- HTML consists of a series of elements
- HTML elements tell the browser how to display the content
- HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.
That was a pretty mouthful of Theory!😉
Let's Jump to the structure of BASIC HTML...
Example :
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>
</body>
</html>
You can try this yourself in the TRY-IT EDITOR of W3 Schools...
{This site is a very useful one if you want to learn to code}
[In my blog I'll sometimes include this editor for your reference!]
https://www.w3schools.com/code/tryit.asp?filename=GOYG5VXLJ22C :) Link to open TryIt Editor for this Session.!
Now Let's see the steps to write your own HTML code {on your Laptop or PC} :
Do practice these Tags and I'll catch you back in another interesting session on HTML 5!
Whoa, this is really informative. I'll surely try to learn this✌️
ReplyDeleteThanks Dear Divya...😎🥰
DeleteYour Enthusiasm will keep me going!
Excellent!
ReplyDeleteKeep it up.
Thanks a million Himu😀😀
DeleteHelpful way of introducing HTML. You could use notepad, Visual Studio, Visual Studio Code or any coding app. Learning JavaScript and CSS with HTML is helpful as students get to know the structural relation between the languages.
ReplyDeleteAbsolutely!
DeleteThanks for this TIP Swastik It'll surely help all of us!😃