InterviewSolution
Saved Bookmarks
| 1. |
What is HTML? |
|
Answer» HTML stands for Hyper Text Markup language. It along with CSS and JavaScript forms the FOUNDING stone of the Internet. All web-pages are written in HTML, as this is the language understood by most web-browsers. It is the most essential part, as for a web-page CSS and JS are not essential. An HTML document consists of HTML tags and saved with .html. These tags are created and new tags are added to HTML by standard committee WORLD Wide Web Consortium (W3C). An example of a simple HTML page. <!DOCTYPE html> <html lang="en"> <head> <title>Example</title> </head> <BODY> <h1>Header</h1> <p>Lorem ipsum dolor SIT amet, consectetur adipisicing elit. Consequatur odit quaerat,sapiente consectetur temporibus dolores placeat facere ipsa, illum deleniti minima,quas exercitationem tenetur quibusdam ducimus veniam! Explicabo modi iusto minus, tenetur facere consequatur quasi id ea, debitis eum QUAE, odit saepe corporis repellat ad provident! Ex hic sed alias! </p> </body> </html>On opening it in a browser. |
|