The Complete Guide Of HTML tags, in a single tutorial, you will learn All HTML Tags with examples. HTML tags like a keyword that describes how the web browser will display the content. With the help of HTML tags, A Browser can differentiate the HTML content and simple content. However, HTML tags having three important parts:
Opening tag <> closing </> tag and content. But many HTML tags are unclosed.
You ever see when a web browser reads an HTML Document page. Do you know? It reads from top to bottom and left to right. However, All HTML tags are used to create HTML documents and provide their properties. Each tag has different properties.
An HTML Document/Page must have some vital HTML tags in which a web browser can distinguish between simple and HTML content.
So, Now let’s take a look briefly at all HTML tags.
HTML <!–…–> Tag
The comment tag is used to put comments on the web pages. Comments are not showing by a web browser. When you write your code, You need to put comments for remembrance of your code. This is useful for programmers who write a lot of codes.
<!--This is a comment. Comments are not displayed in the browser--> <p>This is a paragraph.</p>
HTML <!DOCTYPE> Declaration
The <!DOCTYPE> declaration is important for your HTML document, you should declare <!DOCTYPE> before the <HTML> tag. This declaration is not an HTML tag, It gives the direction to the web browser about what version of HTML in the that you have written.
Always put the <!DOCTYPE> to your HTML documents so that the browser knows about your document.
<!DOCTYPE html> <p>The content of the document......</p>
HTML <a> Tag
The <a> tag describes as a hyperlink that is use to link from on-page to another.
The most vital attribute of the element is the href attribute, which tells the link’s destination
<a href="https://www.softcodeon.com">Soft Codeon!</a>
HTML <abbr> and <acronym> Tag
The <abbr> abbreviation and <acronym> acronym both tags are both used to display the title of the text in the web browser. Marking up abbreviations gives vital information to the browser and also for users what the text is about.
<h1>The abbr element</h1> <p>Using <abbr title="Learn HTML">HTML</abbr> is fun and easy!</p> <h1>The acronym element</h1> Can I get this <acronym title="Learn HTML">HTML Guide</acronym>? <p><strong>Note:</strong> The acronym element is not supported in HTML5.</p>
HTML <address> Tag
The <address> tag describes the contact information for the website owner/developer.
If the <address> tag is inside the <body> tag, it will represent contact information about your web page document, if inside the article as well.
The <address> element shouldn’t be use to define a postal address unless it is a part of your whole contact information.
<address> Written by <a href="mailto:[email protected]">Muhammad Ali</a> <br> Box 564, Disneyland, USA </address>
HTML <area> Tag
The <area> tag describes an area inside an image map. This element is always nested inside <map> element.
<img src="Image.png" width="145" height="126" alt="Image" usemap="#Image"> <map name="Image"> <area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun"> <area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury"> </map>
HTML <article> Tag
The <article> tag states free, self contains content. An article must make sense on its own and it should be feasible to divide. It is free from the rest of the site.
<article> <h2>Google Chrome</h2> <p>Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!</p> </article>
HTML <blockquote> Tag
The <blockquote> tag states a section that is quoted from another source. Web browsers normally indent <blockquote> elements.
<h1>Soft CodeOn<h1> <blockquote> Soft CodeOn: A computer science portal for learning </blockquote>
HTML <button> Tag
The HTML <button> tag is used to define a clickable button. Inside a <button> tag you can put your content such as a text paragraph or something you want. This is the difference between the input tag and a button tag.
Always state the type attribute for an <button> element. Different web browsers use different default types for the button tag.
<button type="button" onclick="alert('Hello ! Welcome to our website')">Click Me! </button>
HTML <caption> Tag
The HTML <caption> element is used to define a table caption. The caption tag should be inserted after the <table> tag. You can state only a single caption per table. Here we see other elements examples such as <table> “Define a Table“, <tr> “Define a table Row“, <th> “Define a table Header“, <td>, and “Define a cell in the table“.
<table> <caption>Monthly savings</caption> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr>
HTML <code> Tag
The HTML <code> element is a phrase tag. It can define as a piece of computer code. Here we see an example with other Phrase Tags like <em>“Emphasized text“, <strong> “Strong Text“,<b>” Bold Text”,<samp>“sample output“, <kbd>“Keyboard Input“, <var>“Variables“, and <br> “Line Break“, <I> “Italic Text”.
<h1>Phrase elements</h1> <em>Emphasized text</em><br> <strong>Strong text</strong><br><i>Itallic Text</i><br> <code>A piece of computer code</code><br> <samp>Sample output from a computer program</samp><br> <kbd>Keyboard input</kbd><br> <var>Variable</var>
HTML <div> Tag
The HTML <div> element is used to define a distribution in an HTML document. This tag is generally used as a container for other HTML tags to style them with Cascading Style Sheet CSS to perform many tasks with javascript.
<div style="background-color:lightblue"> <h3>This is a heading</h3> <p>This is a paragraph.</p> </div>
HTML DL Tag
The HTML<dl> tag is used to define a description in HTML documents. In the given example. The HTML <dt> element is used to define terms in the <dl> list tag, and the <dd> tag is used for conjunction in HTML documents.
<p>These three elements are use to create a description list:</p> <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> <dt>Milk</dt> <dd>White cold drink</dd> </dl>
HTML <embed> Tag
The <embed> element describes a container for an external link or collective content.
<h1>The embed element</h1> <embed src="yourfile.swf">
HTML <figure> Tag
The HTML <figure> element states self-contained content such as diagrams, photos, etc. While the content of the <figure> is associated with the main flow, its position will be independent of the main flow, and if removed it should not affect the flow of the document. In the given example related the <img> tag is used to insert a photo in HTML documents. <figcaption> tag is use to give caption of <figure> tag.
<figure> <img src="https://softcodeon.com/wp-content/uploads/2020/03/Database-Management-1-1-1.png" alt="Complete Guide Of All HTML Tags" style="width:100%"> <figcaption>Fig.1 - Trulli, Puglia, Italy.</figcaption> </figure>
HTML <h1> to <h6> Tags
These heading tags are used to define heading in HTML documents. <h1> is the largest heading and <h6> is the lowest Heading.
<h1>This is heading 1</h1> <h2>This is sub heading 2</h2> <h3>This is sub heading 3</h3> <h4>This is sub heading 4</h4> <h5>This is sub heading 5</h5> <h6>This is sub heading 6</h6>
All HTML <html> Tag
The <html> element tells the web browser that this web page is written in HTML Language. The HTML tag represents the root of the HTML document.
<!DOCTYPE HTML> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html>
HTML <iframe> Tag
The HTML <iframe> element states an inline frame. An inline frame is used to embed another document within the current HTML Web document.
<iframe src="https://softcodeon.com"></iframe>
HTML <input> Tag
The HTML <input> tag states the input field to get the data from the user. An input can get specific data by creating an <form> element. <form> element is used to control the user input data.
<form action="/action_page.php"> <label for="fname">Full Name:</label> <input type="text" id="fname" name="fname"><br><br> <input type="submit" value="Submit"> </form>
HTML <ol> Tag
The HTML <ol> tag defines the Order List, the <ul> element defines the unordered list, and <li> defines the list item.
<p>The ol element defines an ordered list:</p> <ol> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ol> <p>The ul element defines an unordered list:</p> <ul> <li>Coffee</li> <li>Tea</li> <li>Milk</li> </ul>
HTML <mark> Tag
The HTML<mark> is defining to make a text mark. When you will use the mark tag your text will be highlighted.
<p>Do not forget to buy <mark>milk</mark> today.</p>
HTML <meta> Tag
The HTML <meta> tag gives metadata about your HTML document. Metadata will not be shown on the web page, but it will be a machine breakdown.
Metadata elements are normally used to state a web page description, author data, keywords, etc. The metadata can be used by a search engine or web browser.
<head> <meta charset="UTF-8"> <meta name="description" content="Free Web tutorials"> <meta name="keywords" content="HTML,CSS,XML,JavaScript"> <meta name="author" content="Muhammad Ali"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head>
HTML <nav> Tag
The HTML <nav> element describe a set of navigation links. Notice which NOT all links of a document must be inside a <nav> tag. The <nav> tag is released only for the important block of navigation links. The Complete Guide Of HTML tags will help you to create a <nav> for your website.
<nav> <a href="/html/">HTML</a> <a href="/jquery/">jQuery</a> </nav>
HTML <pre> Tag
The HTML <pre> element states the preformatted text. Text in a <pre> tag is shown in a fixed-width font and it saves both spaces and line breaks.
<pre> Text in a pre element is shows in a fixed-width font, and it saves both spaces and line breaks </pre>
HTML <script> Tag
This HTML <script> element is used to define a javascript code in your HTML documents.
<script> document.getElementById("demo").innerHTML = "Hello JavaScript!"; </script>
HTML <span> Tag
The HTML <span> element defines to a group of inline elements in a document.
The <span> element gives no visual change by itself.
<p>My mother has <span style="color:blue">blue</span> eyes.</p>
HTML <textarea> Tag
The HTML <textarea> element states a multi-line input control. The Complete Guide Of HTML tags, You can get an unlimited number of content by a user through this element.
<textarea id="w3mission" rows="4" cols="50"> At soft codeon.com you will learn how to make a website. We offer free tutorials in all web development technologies. </textarea>
I hope so, The Complete Guide Of HTML tags, the tutorial helps you a lot. So, don’t forget to subscribe to our newsletter for further informative content.
I am really glad to glance at this blog posts which contains lots of
helpful facts, thanks for providing these kinds of data.
Hi Black Satta.
Thanks for your interest.???
I really like your blog.. very nice colors & theme.
Did you create this website yourself or did you hire someone to do it for
you? Plz respond as I’m looking to design my
own blog and would like to find out where u got this
from. cheers
Hello Aisha, Thank you for your comment. Please contact us for more information.
Hi there! I know this is kinda off topic however , I’d figured
I’d ask. Would you be interested in exchanging
links or maybe guest authoring a blog post or vice-versa? My blog discusses a lot of the same subjects as yours and
I believe we could greatly benefit from each other.
If you happen to be interested feel free to shoot me an e-mail.
I look forward to hearing from you! Terrific blog by the way!
You made some really good points there. I checked on the
net for more information about the issue and found most individuals will go along with your views on this web site.
It’s in fact very complicated in this active life to listen news on TV, therefore I only use web for that purpose, and get the latest
news.
I used to be recommended this website through my cousin. I am not certain whether this post is written by way
of him as no one else understand such exact approximately my trouble.
You’re wonderful! Thank you!
Wonderful items from you, man. I have consider your stuff
previous to and you are just extremely wonderful. I really like what you’ve received here,
really like what you are saying and the way during which you are saying it.
You’re making it entertaining and you still care for to
keep it smart. I can not wait to learn much more from you.
This is really a tremendous site.
If you desire to grow your experience simply keep visiting this web
site and be updated with the latest news update posted here.
You have made some good points there. I checked on the net to find out more
about the issue and found most people will go along with your views on this site.
No matter if some one searches for his necessary thing, so he/she desires to be available that in detail, therefore that
thing is maintained over here.
Thank you, I’ve just been looking for info approximately this subject for a
while and yours is the greatest I have found out till now.
Hi, i believe that i saw you visited my blog so i got
here to return the prefer?.I’m trying to in finding issues to
improve my website!I guess its ok to use a few of
your ideas!!
What’s Taking place i am new to this, I stumbled upon this I’ve found It absolutely useful and it has aided me
out loads. I hope to give a contribution & aid other customers like its aided me.
Good job.
A fascinating discussion is worth comment.
I believe that you should publish more on this issue,
it may not be a taboo subject but generally folks don’t talk about these issues.
To the next! Many thanks!!
Hi there! This is my first visit to your blog!
We are a team of volunteers and starting a new project in a community in the same niche.
Your blog provided us valuable information to work on. You have done a wonderful job!
Somebody necessarily assist to make seriously posts I would state.
That is the first time I frequented your web page and to this point?
I amazed with the analysis you made to make this particular post incredible.
Great job!
Hello everyone, it’s my first pay a quick visit at this web
page, and post is truly fruitful designed for me, keep up posting such content.
Hi, I do believe this is a great site. I stumbledupon it 😉 I will return once again since I saved as a favorite it.
Money and freedom is the best way to change, may you be rich and continue to guide others.
Hello! I know this is somewhat off topic but I was wondering which blog
platform are you using for this site? I’m getting fed up
of WordPress because I’ve had problems with hackers and I’m looking at options for another platform.
I would be fantastic if you could point me in the direction of a good platform.
I enjoy what you guys are usually up too. This type of clever work and
reporting! Keep up the good works guys I’ve you guys to my
blogroll.
Hi! Quick question that’s totally off topic. Do you know how to make your site mobile friendly?
My web site looks weird when browsing from my iphone4.
I’m trying to find a template or plugin that might be able to correct this issue.
If you have any recommendations, please share.
Appreciate it!
Hi Celeste, Please contact us to solve this problem.
Thanks for your personal marvelous posting! I truly enjoyed reading it, you could be a great author.I will make sure to bookmark your blog
and definitely will come back very soon. I
want to encourage yourself to continue your great writing,
have a nice morning!
I was curious if you ever considered changing the page layout
of your blog? Its very well written; I love what youve got to say.
But maybe you could a little more in the way of content so people could
connect with it better. Youve got an awful lot of text for only having one or 2 images.
Maybe you could space it out better?
Hi, Leland. Thanks for your contribution. We’ll make it better very soon.
Your style is so unique compared to other folks I have read stuff from.
Thank you for posting when you have the opportunity, Guess I will just bookmark this page.
I am really enjoying the theme/design of your web site.
Do you ever run into any browser compatibility issues?
A small number of my blog readers have complained about my blog not working correctly in Explorer but looks great in Safari.
Do you have any solutions to help fix this problem?
Hi Tayla, Please contact us to solve this problem.
whoah this blog is magnificent i like studying your articles.
Keep up the good work! You understand, lots of individuals are
searching round for this information, you could aid them greatly.
Wonderful, what a web site it is! This webpage provides valuable data to us,
keep it up.
Excellent post. Keep posting such kind of info on your
page. Im really impressed by your blog.
Hey there, You have performed an excellent job. I’ll definitely
digg it and individually recommend to my friends.
I am confident they’ll be benefited from this site.
I have read several excellent stuff here. Definitely value bookmarking for revisiting.
I wonder how so much effort you put to create this kind of magnificent informative website.
I am genuinely glad to read this weblog posts which
includes plenty of valuable data, thanks for providing these kinds of
information.
I am truly thankful to the owner of this web page who has shared this great article at at this place.
Fabulous, what a weblog it is! This weblog gives
valuable facts to us, keep it up.
Fastidious response in return of this query
with genuine arguments and describing the whole thing concerning
that.
Greate pieces. Keep writing such kind of information on your site.
Im really impressed by your blog.
Hello there, You have performed an excellent job.
I will definitely digg it and personally recommend
to my friends. I’m sure they’ll be benefited from this web site.
Thanks for sharing your thoughts on satta.
Regards
You actually make it seem so easy with your presentation however I find
this matter to be really something that I think I’d never understand.
It seems too complicated and extremely extensive for me.
I am having a look forward to your subsequent post, I will attempt to get the
grasp of it!
I read this paragraph fully about the comparison of newest
and previous technologies, it’s amazing article.
Hello, yup this post is genuinely pleasant and
I have learned lot of things from it about blogging.
thanks.
Link exchange is nothing else except it is only placing the other person’s web site link on your page at proper place and other person will also
do similar in favor of you.
Hi, this weekend is good in favor of me, for the reason that this moment i am reading this wonderful informative post here at my home.
Because the admin of this web page is working, no uncertainty very soon it will be famous,
due to its feature contents.
Hi, this weekend is good in favor of me, since this occasion i am reading
this enormous informative post here at my home.
Howdy! I know this is sort of off-topic but I
needed to ask. Does building a well-established website like
yours take a massive amount work? I am brand new
to operating a blog however I do write in my journal on a daily basis.
I’d like to start a blog so I can share my experience and thoughts online.
Please let me know if you have any kind of ideas or tips for new aspiring
blog owners. Thankyou!
Very good article. I definitely appreciate this website.
Keep writing!
I’d like to find out more? I’d love to find out some additional
information.
I believe what you posted made a great deal of sense. But,
what about this? suppose you wrote a catchier
title? I mean, I don’t wish to tell you how to run your website, but what if you added
a headline that makes people desire more? I mean The Complete Guide Of
ALL HTML tags – Soft CodeOn is kinda plain. You should look at Yahoo’s front page and note how
they create news headlines to grab people interested.
You might add a video or a related pic or two to grab people excited about what you’ve written. Just my opinion, it would bring your
website a little livelier.
Attractive section of content. I just stumbled upon your blog and in accession capital
to assert that I get in fact enjoyed account your blog posts.
Anyway I will be subscribing to your augment and even I achievement you access consistently quickly.
Highly descriptive article, I enjoyed that a lot. Will there be
a part 2?
It’s awesome in support of me to have a web site, which is
beneficial in support of my knowledge. thanks admin
Its like you read my mind! You appear to know so much about this, like you wrote
the book in it or something. I think that you can do with some pics to drive the message home a bit, but
other than that, this is fantastic blog. A great read. I will certainly be back.
Hurrah, that’s what I was searching for, what a material!
existing here at this web site, thanks admin of this site.
Very descriptive post, I loved that a lot. Will there be a part 2?
Very Soon
Thanks for ones marvelous posting! I really enjoyed reading it, you’re a great author.
I will be sure to bookmark your blog and definitely
will come back sometime soon. I want to encourage that you continue
your great posts, have a nice morning!
whoah this blog is great i love reading your articles.
Keep up the good work! You recognize, many persons are hunting around for this
information, you could aid them greatly.
I used to be suggested this website by way of my cousin. I’m no longer positive whether this submit is written by him as
no one else know such distinctive approximately my difficulty.
You’re amazing! Thanks!
Thank you for the good writeup. It in fact used to be a amusement account it.
Glance advanced to far added agreeable from you!
By the way, how could we keep up a correspondence?
Thank you for the auspicious writeup. It in truth used to be a entertainment account it.
Glance advanced to more added agreeable from you!
However, how can we keep in touch?
Hi to every , for the reason that I am truly eager of reading this website’s post to be updated regularly.
It carries fastidious information.
Thanks for every other fantastic article. The
place else may anybody get that type of info in such a perfect
means of writing? I’ve a presentation next week, and I am on the search for such information.
I’m gone to inform my little brother, that he should also go to see this webpage on regular basis to obtain updated from
most up-to-date news.
Wow, marvelous weblog layout! How lengthy have you ever been blogging for?
you make blogging look easy. The whole look of your website
is fantastic, as smartly as the content!
Thank you.
Spot on with this write-up, I really believe that this web site needs much more attention. I’ll probably be
returning to read more, thanks for the info!
each time i used to read smaller articles or reviews which
also clear their motive, and that is also happening with this paragraph which I am reading here.
Hi there I am so happy I found your webpage, I really found you by error, while I was searching on Google for something
else, Nonetheless I am here now and would just like to say thanks a lot for a fantastic post
and a all round thrilling blog (I also love the theme/design), I don’t have time to go through it all
at the minute but I have book-marked it and also included your RSS feeds, so when I have time I will be back to read more,
Please do keep up the superb b.
First of all I want to say awesome blog! I had a quick question that
I’d like to ask if you don’t mind. I was interested to
find out how you center yourself and clear your head prior to writing.
I’ve had a tough time clearing my thoughts in getting my thoughts out there.
I do enjoy writing however it just seems like the first 10 to 15 minutes are wasted just trying to figure out how to begin. Any recommendations or hints?
Cheers!
Hello, Esperanza Thank you for your contribution. You need to read carefully from the start of the post. We hope you find this post helpful.
I delight in, cause I found just what I used to be looking for.
You have ended my 4 day lengthy hunt! God Bless you man. Have a nice day.
Bye
What i don’t understood is in fact how you are not really a lot more smartly-favored
than you might be right now. You are very intelligent.
You already know thus significantly when it comes to this subject, produced me personally believe it from a
lot of varied angles. Its like men and women aren’t interested unless it is something to accomplish with
Woman gaga! Your own stuffs excellent. Always care for it up!
I am regular reader, how are you everybody? This paragraph posted
at this web site is actually fastidious.
Undeniably imagine that which you stated. Your favourite justification seemed
to be on the internet the simplest thing to take note of.
I say to you, I certainly get annoyed while other folks
think about worries that they plainly don’t understand
about. You controlled to hit the nail upon the top and
outlined out the entire thing without having
side effect , folks can take a signal. Will likely be back to get more.
Thank you