HTML For Beginners - Dave's Blog

Friday, December 2, 2022

HTML For Beginners

thumbnail Note: The most important thing for coding is intention

You want to learn about "how to make a website with html?", if you come here you definitely want to learn about that, right?. Yes, that's true, but if you want to learn about html, you can learn it here too. So I won't go into detail anymore, I will immediately explain what must be done in order to create a simple html page

So for this section I will explain about the beginning of an html code from the basics. One important thing to create html page is the code below.

<html>
...
</html>

The code is the opening html and closing html code (not always required). Then there is the head code inside the html tag, this code serves as a place to be filled by other tags. The code example is as below.

<html>
<head>
...
</head>
</html>

for the contents of this head code will be explained later in the next section. Back to the explanation, people must have a head and body, right? It's the same with html, after the head code is formed, the next is the body code, where the place for the content is, like this.

<html>
<head>
...
</head>
<body>
...
</body>
</html>

The contents of the body section will be explained later. So that's the code above which is the essential part of building an html page.

May Be Useful :)

No comments:

Post a Comment