html

HTML is short for "HyperText Markup Language". That may good scary, but it basically indicates it is a terminology for explaining web-pages using common text. HTML is not a complex development language.
 
HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page. The markup tells the Web browser how to display a Web page's words and images for the user. Each individual markup code is referred to as an element (but many people also refer to it as a tag). Some elements come in pairs that indicate when some display effect is to begin and when it is to end.
 
HTML full form is hyper text markup Language, consists of a series of short codes typed into a text, file by the site author — these are the tags. The text is saved as an html file, and viewed through a browser. This browser reads the file and translates the text into a visible form, hopefully rendering the page as the author had intended. Writing your own HTML entails using tags correctly to create your vision. You can use anything from a basic text-editor to a powerful graphical editor to create HTML pages.
 
HTML is the abbreviation of Hyper Test Markup Language, using HTML you can easily use the text part of your web page, specially font size, color, type etc and their position. You can also have image, tables, frames in your webpage. It is really very easy to learn HTML, and it is a must for any web developer.
 
HyperText Markup Language (HTML) is the standard markup language for creating web pages and web applications. With Cascading Style Sheets (CSS), and JavaScript, it forms a triad of cornerstone technologies for the World Wide Web. Web browsers receive HTML documents from a webserver or from local storage and render them into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.
 
Last edited:
HTML is the standard markup language for creating Web pages.

- HTML stands for Hyper Text Markup Language
- HTML describes the structure of Web pages using markup
- HTML elements are the building blocks of HTML pages
- HTML elements are represented by tags
- HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
- Browsers do not display the HTML tags, but use them to render the content of the page
 
Back
Top