DEV Community

Cover image for The Anatomy of HTML(Hypertext Markup Language) The fundamentals of web development
SardiusJay
SardiusJay

Posted on

The Anatomy of HTML(Hypertext Markup Language) The fundamentals of web development

Hello programmer and coder out there!!

This is the second article in our series on the absolute fundamentals of knowing HTML. Our first article explained in detail what HTML Element is on a conceptual level. We looked at what a markup language is, what tags are and element can be make use of.

the newbie in tech and coming in to start with web development or too be a Frontend developer, there is always a need to start with the basics of programming that is base on Html..... and today we are going to be talking about the Anatomy of HTML... knowing the element(which we discuss with in the last article)

Anatomy is the identification and description of the structures of the elements, tags and other sources in Hyper text markup language. which deals with the skeleton of the website or web page, it will determine the web structure in terms of text,

which consist of the :- Html </> Head Body H1

Paragraph
Br
for example, let us create our first web page with Hello World!!



<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Web Page/title>
</head>

<body>
<h1>Hello World!!</h1>
</body>
</html>

The Anatomy of Hypertext Markup Language

And that just the basics you need to know for the skeleton and foundation in dealing with HTML, but if there are others you can element that can be added it can be in the written in the comment below...

Enter fullscreen mode Exit fullscreen mode

Top comments (0)