Skip to content
pakainfo

Pakainfo

Web Development & Good Online education

  • Home
  • Blog
  • Categories
  • Tools
  • Full Form
  • Guest Post
    • Guest Posting Service
  • Advertise
  • About
  • Contact Us

What is the full form of html – Introduction to HTML with Examples?

February 22, 2021 Pakainfo Technology, Programming Leave a comment

Today, We want to share with you what is the full form of html?.In this post we will show you html & css: design and build web sites, hear for what is full form of html? we will give you demo and example for implement.In this post, we will learn about Full Forms Computer And Internet Parts Related Important Full Form with an example.

what is the full form of html in computer?

Contents

  • what is the full form of html in computer?
    • full form of html
    • formatting tags in html
    • pre tag in html
    • em tag in html
    • center tag in html
    • nav tag in html
    • html to jpg
    • br tag in html
    • fieldset in html
    • empty tag in html
    • html video autoplay loop
    • html datalist
    • whatsapp share button html code
    • thank you page html
    • html input pattern numbers only
    • copyright symbol in html
    • vertical line in html
    • Related posts

HTML stands for Hypertext Markup Language. it is a the set of markup symbols. HTML suported the user to make as well as basic structure sections part, some paragraphs, headings like as a (H1, H2, H3, H4, H5, H6), links(a href tag), and blockquotes for web pages as well as online applications.

full form of html

Answer: Hypertext Markup Language

simple defination of the HTML,
in full hypertext markup language,
a clean and clear formatting system for displaying web view material retrieved over the data Internet.

-> HTML (Hypertext Markup Language)
-> HTTP (Hypertext Transfer Protocol)
-> CSS (Cascading Style Sheets)
-> “PHP: Hypertext Preprocessor”

formatting tags in html

HTML Formatting Elements

<b>Welcome Message is bold</b>
<strong>Welcome Message is important!</strong>
<i>Welcome Message is italic</i>
<em>Welcome Message is emphasized</em>
<small>Welcome is some smaller Message.</small>
<p>Do not forget to buy <mark>milk</mark> today.</p>
<p>My favorite color is <del>blue</del> red.</p>
<p>My favorite color is <del>blue</del> <ins>red</ins>.</p>
<p>Welcome is <sub>subscripted</sub> Message.</p>
<p>Welcome is <sup>superscripted</sup> Message.</p>

Element name Description
<b> This is a physical tag, which is used to bold the Message written between it.
<strong> This is a logical tag, which tells the browser that the Message is important.
<i> This is a physical tag which is used to make Message italic.
<em> This is a logical tag which is used to display content in italic.
<mark> This tag is used to highlight Message.
<u> This tag is used to underline Message written between it.
<tt> This tag is used to appear a Message in teletype. (not supported in HTML5)
<strike> This tag is used to draw a strikethrough on a section of Message. (Not supported in HTML5)
<sup> It displays the content slightly above the normal line.
<sub> It displays the content slightly below the normal line.
<del> This tag is used to display the deleted content.
<ins> This tag displays the content which is added
<big> This tag is used to increase the font size by one conventional unit.
<small> This tag is used to decrease the font size by one unit from base font size.
Also Read This ๐Ÿ‘‰   Find duplicate data index in php Examples

pre tag in html

<!DOCTYPE html>
<html>
<body>

<h2>The pre element</h2>

<pre>
Enter the tamilrockers URL. 1tamilmv.us. 
You will be redirected to 		the current updated tamilrockers website. 
Tamilrockers is an Indian piracy 		website that provides access to download 		free movies online. 
It includes movies in 
		Tamil, 		Kannada, 	Malayalam, 	English and 	Hindi languages. 				The website has some of 
the features like tamilrockers forum, 
proxy and member area.So, yes, TamilRockers, or any other torrent site, 		is not safe at all. ... 						Now that torrent downloading is illegal 				and will land you in jail.
</pre>

</body>
</html>

em tag in html

<!DOCTYPE html>
<html>
<body>

<h2>The HTML em element</h2>

<p>Welcome To <em>you</em> to Rajkot BJP!</p>

<p>I <em>might</em> live love to my BF.</p>

</body>
</html>

center tag in html

<!DOCTYPE html>
<html>
<head>
<style>
h2 {text-align: center;}
p {text-align: center;}
div {text-align: center;}
</style>
</head>
<body>

<h2>how to concat two columns in sql?</h2>
<p>refresh page without losing form data javascript.</p>
<div>difference between session and cookies in php.</div>

</body>
</html>

nav tag in html

<!DOCTYPE html>
<html>
<body>

<h1>The nav element</h1>

<p>The nav element defines a set of navigation links:</p>

<nav>
<a href="/pakainfo/">Pakainfo</a> |
<a href="/4cgandhi/">4cgandhi</a> |
<a href="/infinityknow/">Infinityknow</a> |
<a href="/zakhi/">Zakhi</a>
</nav>

</body>
</html>

html to jpg

CloudConvert is an online document converter.
Convert HTML (Hypertext Markup Language with a client-side image map) to JPG (Joint Photographic Experts Group JFIF format).

br tag in html

<!DOCTYPE html>
<html>
<body>

<h2>A Quick Info</h2>

<p>What is Tamilrockers new link?<br>
Vishal's Chakra leaked online,<br>
torrent website which provides illegal download,<br>
and TamilRockers is a website that leaks HD movies.</p>

<p><em>-Virat JanemanKohima</em></p>

</body>
</html>

fieldset in html

<!DOCTYPE html>
<html>
<body>

<h2>The fieldset element - www.pakainfo.com</h2>

<form action="/welcome_demo.php">
 <fieldset>
  <legend>Profile:</legend>
  <label for="gname">Good name:</label>
  <input type="text" id="gname" name="gname"><br><br>
  <label for="sirname">Sir name:</label>
  <input type="text" id="sirname" name="sirname"><br><br>
  <label for="email">Email:</label>
  <input type="email" id="email" name="email"><br><br>
  <label for="joindt">JoinDate:</label>
  <input type="date" id="joindt" name="joindt"><br><br>
  <input type="submit" value="Submit">
 </fieldset>
</form>

</body>
</html>

empty tag in html

HTML elements with no any data content are called empty elements.

Empty HTML Elements

//The <br> tag defines a line break, as well as is an empty element without a closing tag:


<!DOCTYPE html>
<html>
<body> 

<p>This is a <br> paragraph with a line break.</p>

</body>
</html>

Some basic examples of container tags are:

<html> </html>
<head> </head>
<title> </title>
<body></body>
<P> </P> -paragraph tag
<A></A> -anchor tag
<TT></TT> - to use typwriter font
<SUP></SUP> - to write in power of something like a^2
<SUB></SUB> - to write in lower phase like H2O (water)
<B></B> - to bold the text
<I></I> -to italic the text
<U></U>-to underline the text
<font></font>
<li></li>
<OL></OL> -ordered list
<UL></UL>-unordered list
<DL></DL>-definition list
<DT></DT>-definition term
<DD></DD>-definition description
<textarea></textarea>
<table></table>

html video autoplay loop

<!DOCTYPE html>
<html>
<body>

<h2>The video loop attribute</h2>

<video width="800" height="400" controls loop>
  <source src="pakainfo.mp4" type="video/mp4">
  <source src="pakainfo.ogg" type="video/ogg">
  Sorry, Your browser does not support the video tag.
</video>

</body>
</html>

html datalist

//HTML <datalist> Tag
<!DOCTYPE html>
<html>
<body>

<h2>The HTML datalist element</h2>

<form action="/welcome.php" method="get">
  <label for="upcomming_movie">Select your upcomming_movie from the list:</label>
  <input list="upcomming_movies" name="upcomming_movie" id="upcomming_movie">
  <datalist id="upcomming_movies">
    <option value="Tamilrokers">
    <option value="Bolly4u">
    <option value="English">
    <option value="Hindi">
    <option value="Tamil">
  </datalist>
  <input type="submit">
</form>

</body>
</html>


whatsapp share button html code

<html>   
<head>   
    <title> Add a WhatsApp sharing link on a website - www.pakainfo.com </title>   
</head>   
<style>  
     //css code to hide the WhatsApp sharing link on the large screen  
    @media screen and (min-width: 1000px) {  
        a {  
            display: none  
        }  
    }  
</style>  
  
<body>   
    <h3 style="color:brown"> WhatsApp sharing Link </h3>   
    <!-- create a link using anchor tab -->  
    <a href="//send?text=How to add WhatsApp share button to your website?" data-action="share/whatsapp/share" target="_blank" rel="noopener"> Share to WhatsApp </a>   
</body>   
</html>  

thank you page html

index.html

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

<head>
  <meta charset="UTF-8">
  <title>Bootstrap 4 Thank You Page -www.pakainfo.com</title>
  <script src="https://bootstrapcreative.com/wp-bc/wp-content/themes/wp-bootstrap/codepen/bootstrapcreative.js?v=1"></script>
  <link rel='stylesheet prefetch' href='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css'>
</head>

<body>

  <div class="jumbotron text-xs-center">
  <h2 class="display-3">Thank You!</h2>
  <p class="lead"><strong>Please check your email</strong> for further instructions on how to complete your account setup.</p>
  <hr>
  <p>
    Having trouble? <a href="">Contact us</a>
  </p>
  <p class="lead">
    <a class="btn btn-primary btn-sm" href="https://bootstrapcreative.com/" role="button">Continue to Welcome Page</a>
  </p>
</div>
  <script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'></script>
<script src='https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/js/bootstrap.min.js'></script>
</body>
</html>

html input pattern numbers only

<!DOCTYPE html>
<html>
<body>

<form>
  Mobile No. : 
  <input type="text" onkeypress="return event.charCode >= 48 && event.charCode <= 57" minlength="10" maxlength="10" required />
  
  Password : 
  <input type="password" required />

  <input type="submit" value="Submit" />
  <input type="reset" value="Reset" />
</form>

</body>
</html>

html input pattern only numbers(html5 number integer)

<input type="number" step="1" />

copyright symbol in html

COPYRIGHT SIGN

// html example
<span>©</span>

// css example
span {
  content: "\00A9";
}

UNICODE      U+000A9
HEX CODE     ©
HTML CODE    ©
HTML ENTITY  ©
CSS CODE     \00A9

vertical line in html

How To Create a Vertical Line?

Also Read This ๐Ÿ‘‰   IntsAreSorted function in GO language program

index.html

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.vline {
  border-left: 5px solid red;
  height: 600px;
}
</style>
</head>
<body>

<h2>Vertical Line - www.pakainfo.com</h2>

<div class="vline"></div>

</body>
</html>

I hope you get an idea about Introduction to HTML & html mcq.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, donโ€™t forget to share.

Related posts:

  1. HTML Textbox CSS style examples
  2. how to add calendar in html form?
  3. how to make a login page in html with database?
  4. Responsive Registration Form in HTML and CSS Source Code [ 8+ elements ]
  5. how to save data from html form to a database using php?
  6. mobile number validation in html w3schools Examples
  7. Reset Password Form Free bootstrap Widget Template
  8. Multiple image slider in html source code
  9. Form Validation Using React Examples
difference between xml and htmlfull form of htmlhref full form in htmlhtml & css: design and build web siteshtml full formhtml full form in computerhtml logo pnghtml mcqhtml vs html5user profile page html templatewhat is full form of html?what is the full form of htmlwhat is the full form of html in computer?

Post navigation

Previous Post:How To Solve The Page Expired 419 Error In Laravel?
Next Post:PHP script to retrieve raw HTTP data using php input (“php://input”)

Advertise With Us

Increase visibility and sales with advertising. Let us promote you online.
Click Here

Write For Us

Weโ€™re accepting well-written informative guest posts and this is a great opportunity to collaborate.
Submit a guest post to [email protected]
Contact Us

Freelance web developer

Do you want to build a modern, lightweight, responsive website quickly?
Need a Website Or Web Application Contact : [email protected]
Note: Paid Service
Contact Me

Categories

3movierulz (64) Ajax (464) AngularJS (377) ASP.NET (61) Bio (109) Bollywood (108) Codeigniter (175) CSS (98) Earn Money (93) Education (63) Entertainment (130) fullform (87) Google Adsense (64) Highcharts (77) History (40) Hollywood (109) JavaScript (1359) Jobs (42) jQuery (1423) Laravel (1088) LifeStyle (53) movierulz4 (63) Mysql (1035) Mysqli (894) php (2133) Programming (2345) Python (99) Software (178) Software (90) Stories (98) tamilrockers (104) Tamilrockers kannada (64) Tamilrockers telugu (61) Tech (147) Technology (2416) Tips and Tricks (130) Tools (214) Top10 (505) Trading (94) Trending (76) VueJs (250) Web Technology (112) webtools (200) wordpress (166) World (343)

A To Z Full Forms

Access a complete full forms list with the meaning, definition, and example of the acronym or abbreviation.
Click Here
  • Home
  • About Us
  • Terms And Conditions
  • Write For Us
  • Advertise
  • Contact Us
  • Youtube Tag Extractor
  • Info Grepper
  • Guest Posting Sites
  • Increase Domain Authority
  • Social Media Marketing
  • Freelance web developer
  • Tools
Pakainfo 9-OLD, Ganesh Sco, Kothariya Ring Road, Chokadi, Rajkot - 360002 India
E-mail : [email protected]
Pakainfo

ยฉ 2023 Pakainfo. All rights reserved.

Top
Subscribe On YouTube : Download Source Code
We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype Guest Posting Sites