My FeedDiscussionsHeadless CMS
New
Sign in
Log inSign up
Learn more about Hashnode Headless CMSHashnode Headless CMS
Collaborate seamlessly with Hashnode Headless CMS for Enterprise.
Upgrade ✨Learn more
HTML Beginners Guide ( Lesson #1 )

HTML Beginners Guide ( Lesson #1 )

Mohamed Abdallah Saad's photo
Mohamed Abdallah Saad
·Apr 20, 2021·

2 min read

What is HTML ?

  1. HTML stands for Hypertext Markup Language.
  2. The Main language for building Webpages .

What is the versions of HTML ?

there are Versions of HTML and we will cover V.4 and V.5 in this coming lessons

  • version are like windows version every update has some new features instead of some old features .
  • there are some tags was in V.4 but it has been changed to another on V.5 and so on .

What's the Elements ?

  • Elements is the tags and the content that we use to start building a webpage <Opening tag> content </closing tag>

  • let's start with the root of html document which tell the browser what language we use in the document, it's the HTML Tag .

<html> 


</html>

this is one of the main tags we should write on every page we create by HTML language. -the second tag will be the head tag which i describe it as the brain of the page because we type all the settings of the page between those opening and closing tag of the head

<head> 

</head>
  • and now we are coming for the body tag which contain the content of the page as the headings , paragraphs , image, videos , audios and all the content the we want to add on our websites .
<body>


</body>

For today that's enough just try it all together and search about those tags , and i hope this subject will be helpful .