HTML
This section contains few concepts related to HTML language and example files to explore the possibilities of HTML tags usage.
Last updated
Was this helpful?
This section contains few concepts related to HTML language and example files to explore the possibilities of HTML tags usage.
Last updated
Was this helpful?
A web browser, or simply "browser," is an application used to access and view websites. Common web browsers include Microsoft Internet Explorer, Google Chrome, Mozilla Firefox, and Apple Safari. The primary function of a web browser is to render HTML, the code used to design or "mark up" webpages.
When a user launches a Universal Resource Locator (URL) on a browser, it hits the respective domain web server and launches the web pages which are required by the user. The below image illustrates the workflow of the launch of the website.
HyperText Markup Language -lingua franca for publishing hypertext
A simple text format to create web pages
Specify structure, presentation and content of a web page
Define tags <html> <head> <body> ....etc
Allow to embed other scripting languages to manipulate design layout, text and graphics
Platform independent
No special software required. They are by default part of Internet browser application like Chrome, IE, Safari, Mozilla FireFox
The below image illustrates how a basic HTML code is reflected on a browser page
Consider headers carefully, it helps to identify your page
The title of a Web page determines its ranking in certain search engines
The title will also appear on Favorite lists, History lists, and Bookmark lists to identify your page
HTML Contents include paragraph, headings, hyperlinks, images, media, lists, tables, form
HTML Tags are considered as markup to specify the structure and style
An opening tag and closing tag, Sometimes no closing tag Can have the attributes to specify extra info
Checks your HTML page for errors
Like a compiler checks for errors in your program•Always write valid HTML pages even if the wrong HTML page “works”.
Use below attached Sample File to understand the above examples
HTML Validator:
Complete list of HTML tags -
End to End HTML Guide by Mozilla Foundation -