What about HTML is that

Asked By 30 points N/A Posted on -
qa-featured

Hi I am new comer in learning web page designing. First I want to know about HTML. Is anybody can describe what is HTML and details? Is there possible without using HTML create web page?

SHARE
Best Answer by Taylor Laura
Answered By 0 points N/A #163236

What about HTML is that

qa-featured

Hello,

HTML means Hyper Text Markup Language. By using HTML you can create webpage. No you cannot create web page without HTML. Web page can read HTML language and any other language is converting to run web page.

Every web supporting language (like, CSS, Jquery, JavaScript etc.)Those always convert into plain HTML and run a web page.

Thanks

Best Answer
Best Answer
Answered By 15 points N/A #163237

What about HTML is that

qa-featured

Hi Michele, 

 
HTML is the language of the Web.  It stands for HyperText Markup Language and it is a programming language used to create web pages.  The HTML in your website tells the browser everything that it needs to know to be able to display your web page accordingly.
 
Since it is the key to get a browser to display your website, it is important to know how it looks like.  This is the skeleton of an HTML language:
 
<html>
     <head>  
          <title>  This is the Title </title>
     </head>
        <body>
               <h1> Header 1</h1>
                     <p> Content here for Header 1</p>
 
               <h2> Header 2</h2>
                     <p> Content here for Header 2</p>
       </body>
</html>
 
I wrote this in NOTEPAD then save it as’ homepage.htm’.
 
This is how it looks like when I open it using Google Chrome.
 
HTML is the most basic programming language for web programming.  Once you’ve learn  how to use it, you can move on learning CSS or Java Scripting to advance your knowledge in Web page design.
 
Best regards,
Taylor
 
Answered By 590495 points N/A #291499

What about HTML is that

qa-featured

HTML stands for HyperText Markup Language. It is the standard markup language for building web applications and web pages. Together with JavaScript and CSS or Cascading Style Sheets, HTML builds a triad of foundation technologies for the World Wide Web. When a user uses a web browser to access a website, it receives HTML documents from a web server or local storage and delivers them into multimedia web pages.

The original version of HTML is HTML 2.0 published in November 24, 1995 as IETF RFC 1866. It was followed by HTML 3.2 in January 14, 1997 published as a W3C Recommendation. This was the very first version that was exclusively developed and standardized by the W3C because the IETF had closed its HTML Working Group on September 12, 1996.

In December 18, 1997, HTML 4.0 was published as a W3C Recommendation and was reissued in April 24, 1998 without incrementing the version number and containing minor edits. It was then followed by HTML 4.01 in December 24, 1999 published as a W3C Recommendation publishing its last errata on May 12, 2001. HTML5 was published on October 28, 2014 as a W3C Recommendation.

The latest version at the moment is HTML5.1 published on November 1, 2016 as W3C Recommendation.

Related Questions