HTML - Basic Information

Devin

Somewhat Known
Member
Jun 12, 2022
633
769
Dex
$0.000
Raw Dex
$0.000
When it comes to coding and development, most people immediately think of the term "HTML." It's by far the most recognized and basic form of coding language out there. However, although most individuals are familiar with the term HTML they don't really have much knowledge of what it is or what it is used for. For starters, HTML is an abbreviation for "HyperText Markup Language" and is the standard coding language used to create online web pages. HTML is basically the starting point for nearly any type of development project, overall, it basically provides the structure and content of a web page. However, if only using HTML, this would provide a blank page with text, it would not include any formatting, links, and/or images. HTML uses a series of attributes and tags that are used to define the structure and content of a web page. Below, I will show you some example HTML tags:

<html>, <head>, <title>, <body>, <h1> - <h6>, <p>, <a>, <img>, and <div>.

With all of the above being mentioned, HTML is a markup language and isn't actually a programming language. This means that HTML does not have the features or the ability to perform complex tasks or calculations.

When it comes to creating an HTML document, you can easily do so by using a notepad application or something similar on your PC, or if you'd prefer to go a more advanced route you could use Adobe Dreamweaver.

In conclusion, HTML is always progressing for the better and new versions are released from time to time. The most recent version released was HTML5 back in 2014 and introduced new features such as multimedia support and semantic elements.

Let me know if you guys learned anything from this post, and feel free to add on to the above information.
 

oldbuddy

Notable
Member
Sep 13, 2022
1,098
182
Dex
$0.000
Raw Dex
$0.000
I think the most important benefit of HTML, is you can find free courses and support to learn it online from qualified instructors like those found on W3Schools.com and even be certified by them with enough validity to land some good paying gig jobs to start your online adventure on the right foot.
 

fcbetting

Notable
Member
Jun 16, 2022
4,446
345
Dex
$0.010
Raw Dex
$0.220
HTML is excellent from start since begginers can see changes. Example
HTML:
<b>Bold text</b>
<i>Italic text</i>
In many programing languages you don't see anything at start. Until you come to visible part (form, button) you must learn many stuff. In HTML also you learn parent - child relationship, open and closed tags which is very important for later.
Code:
<div>Parent
<div>Child</div>
</div>
 

oldbuddy

Notable
Member
Sep 13, 2022
1,098
182
Dex
$0.000
Raw Dex
$0.000
HTML is excellent from start since begginers can see changes. Example
HTML:
<b>Bold text</b>
<i>Italic text</i>
In many programing languages you don't see anything at start. Until you come to visible part (form, button) you must learn many stuff. In HTML also you learn parent - child relationship, open and closed tags which is very important for later.
Code:
<div>Parent
<div>Child</div>
</div>
The easy way to always have matched tags is to type the tags first and then insert the content. <b></b> then add <b>This Is Bold</b>
 

nomad

Moderator
Moderator
Member
Jun 22, 2022
6,961
395
Dex
$1.170
Raw Dex
$2.870
I have tried my hands on HTML to do some minor editing on my websites but I do not have any skills with this language. I do not want to mess up with the codes, therefore, I avoid it.
 

oldbuddy

Notable
Member
Sep 13, 2022
1,098
182
Dex
$0.000
Raw Dex
$0.000
I have tried my hands on HTML to do some minor editing on my websites but I do not have any skills with this language. I do not want to mess up with the codes, therefore, I avoid it.
The simple solution is to make a backup copy of the page you want to edit, then if it turns out to be wrong just replace it with the backup and start over.
 

fcbetting

Notable
Member
Jun 16, 2022
4,446
345
Dex
$0.010
Raw Dex
$0.220
For HTML language you don't need special interpreter installed on your computer. You can use any web browser.
Write HTML code in notepad and save it as HTML.
1679126511473.png
Run it into any web browser and you will get intepretation on HTML language.
1679126670636.png
Or you can use online interpreter like developer.mozzila.org
1679126777072.png
 

Abdul01

Unfamiliar
Member
May 25, 2023
312
13
Dex
$0.000
Raw Dex
$0.000
When it comes to coding and development, most people immediately think of the term "HTML." It's by far the most recognized and basic form of coding language out there. However, although most individuals are familiar with the term HTML they don't really have much knowledge of what it is or what it is used for. For starters, HTML is an abbreviation for "HyperText Markup Language" and is the standard coding language used to create online web pages. HTML is basically the starting point for nearly any type of development project, overall, it basically provides the structure and content of a web page. However, if only using HTML, this would provide a blank page with text, it would not include any formatting, links, and/or images. HTML uses a series of attributes and tags that are used to define the structure and content of a web page. Below, I will show you some example HTML tags:

<html>, <head>, <title>, <body>, <h1> - <h6>, <p>, <a>, <img>, and <div>.

With all of the above being mentioned, HTML is a markup language and isn't actually a programming language. This means that HTML does not have the features or the ability to perform complex tasks or calculations.

When it comes to creating an HTML document, you can easily do so by using a notepad application or something similar on your PC, or if you'd prefer to go a more advanced route you could use Adobe Dreamweaver.

In conclusion, HTML is always progressing for the better and new versions are released from time to time. The most recent version released was HTML5 back in 2014 and introduced new features such as multimedia support and semantic elements.

Let me know if you guys learned anything from this post, and feel free to add on to the above information.
Actually , I have known HTML and its syntax for long, but still this helps me refreshed what I have learned since it's being a while I wrote codes , HTML is a mark up language and not a programming language as most some people see it ,especially those new to the field.
 

Smalto

Notable
Member
Feb 23, 2023
1,200
73
Dex
$0.000
Raw Dex
$0.000
When it comes to coding and development, most people immediately think of the term "HTML." It's by far the most recognized and basic form of coding language out there. However, although most individuals are familiar with the term HTML they don't really have much knowledge of what it is or what it is used for. For starters, HTML is an abbreviation for "HyperText Markup Language" and is the standard coding language used to create online web pages. HTML is basically the starting point for nearly any type of development project, overall, it basically provides the structure and content of a web page. However, if only using HTML, this would provide a blank page with text, it would not include any formatting, links, and/or images. HTML uses a series of attributes and tags that are used to define the structure and content of a web page. Below, I will show you some example HTML tags:

<html>, <head>, <title>, <body>, <h1> - <h6>, <p>, <a>, <img>, and <div>.

With all of the above being mentioned, HTML is a markup language and isn't actually a programming language. This means that HTML does not have the features or the ability to perform complex tasks or calculations.

When it comes to creating an HTML document, you can easily do so by using a notepad application or something similar on your PC, or if you'd prefer to go a more advanced route you could use Adobe Dreamweaver.

In conclusion, HTML is always progressing for the better and new versions are released from time to time. The most recent version released was HTML5 back in 2014 and introduced new features such as multimedia support and semantic elements.

Let me know if you guys learned anything from this post, and feel free to add on to the above information.
We learn everyday, even the basic things we feel we already know, at least I have learnt couple of things with this your wonderful tutorial, html is an essential language of the web,you can't talk about web programming and not include html.
 

capri

Somewhat Known
Member
Jun 12, 2023
743
28
Dex
$0.000
Raw Dex
$0.000
I have thankfully learned that I can create an HTMl document using a simple and easily accessible app such as Notepad. This important insight should aid in boosting my interest in programming. My fingers are crossed.
 

aovurevu

Somewhat Known
Member
May 4, 2023
753
36
Dex
$0.000
Raw Dex
$0.070
I have thankfully learned that I can create an HTMl document using a simple and easily accessible app such as Notepad. This important insight should aid in boosting my interest in programming. My fingers are crossed.
You can always do more of practice to retain the HTML syntax you have just learned and this way you can kick start a career in web development since that's the basics of the frontend development.
 
Back
Top