HTML

html tutorials

Welcome to HTML!

Welcome to HTML! HTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages.Our HTML tutorial is developed for beginners and professionals. This was created by Berners-Lee in late 1991 but “HTML 2.0” was the first standard HTML specification which was published in 1995. HTML 4.01 …

Welcome to HTML! Read More »

About html

HTML In Detail

What is Html ? HTML In Detail : HTML means Hypertext Markup Language, and it uses tags to identify content. It is used for making web pages and web applications. Hypertext : The link available on a webpage is called Hypertext. And simply we can it Text within Text. Markup Language : A text document …

HTML In Detail Read More »

Tag in html

HTML Tags

HTML Tags are the keywords which define’s that how web browser will format and display the content. With the help of tags, a web browser can distinguish between an HTML content and a simple content. The three main parts of Html Tags are: i. Opening Tagii. Contentiii. Closing Tag Note: But there are some Tags …

HTML Tags Read More »

Attributes in HTML

HTML Attributes

HTML Attributes provide additional information about an element or a tag,while also modifying them.Each element or tag can have attributes, which defines the behaviour of that element. ▪ Attributes should always be applied with start tag.▪ The Attributes name and values are case sensitive, and it is recommended by W3C that it should be written …

HTML Attributes Read More »

Element in HTML

HTML Elements

An HTML file is made of HTML Elements. These elements are responsible for creating web pages and define content in that webpage. An element in HTML usually consists of: i.start tag.ii. attributes.iii. end tag. Example: <!DOCTYPE html><html><head><title>WebPage</title></head><body><h1>This is my first web page</h1><h2> How it looks?</h2><p>It looks Nice!!!!!</p></body></html> Types of Elements: In HTML most of the …

HTML Elements Read More »

Formatting in html

HTML Formatting

HTML Formatting is a process of formatting text for better look and feel. HTML provides us ability to format text without using CSS. There are many formatting tags in HTML. These tags are used to make text bold, italicized, or underlined. There are almost 14 options available that how text appears in HTML and XHTML. …

HTML Formatting Read More »

phrase in html

HTML Phrase

The HTML Phrase tags are special purpose tags, which defines the structural meaning of a block of text or semantics of text. Following is the list of phrase tags, some of which we have already discussed in HTML formatting. i. Abbreviation tag : <abbr> ii. Acronym tag: <acronym> (not supported in HTML5) iii. Marked tag: …

HTML Phrase Read More »

Meta tag in html

HTML Meta Tag

HTML Meta Tag is used to represent the metadata about the HTML document. It specifies page description, keywords, copyright, language, author of the documents, etc. With the help of meta tag, you can experiment and preview that how your webpage will render on the browser. Adding Meta Tags to Your Documents: You can add metadata …

HTML Meta Tag Read More »

Comments in html

HTML Comments

HTML Comments are some text or code written in your code to give an explanation about the code, and not visible to the user. Comments which are used for HTML file are known as HTML comments. Anything written between these tags will be ignored by the browser, so comments will not be visible on the …

HTML Comments Read More »

Images in Html

HTML Image

HTML Image tag is used to display image on the web page. HTML img tag is an empty tag that contains attributes only, closing tags are not used in HTML image element. Attributes of HTML img tag: The src and alt are important attributes of HTML img tag. All attributes of HTML image tag are …

HTML Image Read More »