answersLogoWhite

0


Best Answer

HTML stands for Hyper Text Markup Language

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

9y ago

H in HTML is Hyper to be precise. It is a tag based language used for designing.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the h in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the HTML code for Heading 3?

<h3>Heading Text</h3> There are six headings in HTML. They start with <h1> and end with <h6>. They all follow the patter <h#>Text</h#>


What does h ref code do used in HTML?

the HREF attribute of an A tag is the location you want a link to point to.


What books are available to learn html coding?

Books that are available to learn html coding are called coding books. A good book that is a coding book is called HTML for Dummies, 5th edition


How does one make headlines in HTML?

Headlies in HTML is achieved by putting desired headline text in between "h-tags" as such: example where the number represents the size of the headline. A larger number means a smaller headline.


What does HTML stands for?

HTML stands for Hyper Text Markup Language. HTML is the "language" used to create web pages. The rules for HTML are the same for all users, so the pages created are viewable by anyone with access to the Internet.


A animal in the rainforest that starts with H?

a howler monkey. That would be your answerhttp://www.belizezoo.org/zoo/zoo/mammals/how/how1.html


How do you write H2O in HTML code?

To write the elemental definition of water (H20) in HTML, use the <sub></sub> element to surround the 2. SUB designates a particular portion of text as subscript. So... <p>H<sub>2</sub>O</p> Will give results similar to: H2O


How To Hack Most of The Games?

This Is For Commando 2 www.ArcadePreHacks.com/game/394/Commando-2.html This Is For Heli Attack 3 www.ArcadePrePacks.com/game/679/Heli-Attack-3.html There Website's Are From Me H 4 R 0 0 N


Differentiate HTML tag from an HTML documents?

HTML tags are used to delimit HTML elements inside an HTML document.


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


What does h mean in HTML?

The "H" represents the element hydrogen in the table of elements.


Javascript code for the area of a triangle?

<html> <head> <script language="JavaScript"> function TriaAngle (base, height) { document.write("the area of the triangle is" +1/2*base*height) } </script></head> <body> <script language ="JavaScript"> var b=(prompt ("enter the base of the triangel")) var h=(prompt ("enter the height of the triangle")) TriaAngel (b,h) </script ></body></html>