Powered by Blogger.

HTML tutorial part:3 (introduction with HTML tags)

Category:
By: Tariqul Islam → Wednesday, October 7, 2015
HTML works in a very straightforward way. You can type text and tags to get large print, colored text, centered text, text in italics, bold text, indented sentences  etc. What you need to do is nothing more than inserting tags around your text. These tags are more accurately called ELEMENTS. You need to know how this elements behave with the text they contain and how they should be formatted. We will get more into this in next part.

Lets talk about tags
"<", ">" you most probably know this symbols. ">" is called GREATER THAN and "<" is called  LESS THAN.  These symbols are also called "Angle Brackets" and sometimes called "pointed brackets".  "<" is called opening angle bracket and ">" is called closing angle bracket. Each and every HTML tags are always contained with this symbols.

Example:  <tag>

Now every HTML tag should be properly closed. But how to close them? Basically it is same as how it starts excepts “/” symbol.

Example: <tag></tag>

You have to write your text inside this text. For example:  <tag>this is my text</tag>

There are lots of HTML tags. Here I am giving you a simple list

<!DOCTYPE>
<a>
<abbr>
<acronym> 2
<address>
<applet> 3
<area>
<article>
<aside>
<audio>
<b>
<base>
<basefont> 4
<bdi>
<bdo>
<big> 4
<blockquote>
<body>
<br>
<button>
<canvas>
<caption>
<center> 4
<cite>
<code>
<col>
<colgroup>
<command>
<datalist>
<dd>
<del>
<details>
<dfn>
<dir>
<div>
<dl>
<dt>
<em>
<embed>
<fieldset>
<figcaption>
<figure>
<font>
<footer>
<form>
<frame>
<frameset>
<h1> - <h6>
<head>
<header>
<hgroup>
<hr>
<html>
<i>
<iframe>
<img>
<input>
<ins>


Posted At:

Tariqul Islam Adnan

I am tariqul and I’m from Dhaka, Bangladesh. I’m 21 and a part time blogger. Pro sunset is run by me, I also write and make video for it. I always like to share my experience with others and that is why tutorial making is my hobby. I mainly make tutorial on several topics like programming languages, web design and development, software development and other related topics.

No Comment