HTML Archive
HTML: It is case insensitive. HTML stands for Hyper Text Markup Language. “Hyper Text” means the text which is displayed on the web page. “Mark Up” means tag based language. It is a client side …
Edit and Run HTML File: We can simply edit the HTML code using universal editor(Notepad) We edit the code and save with extension(.html) When we save the file, it shows the file with browser icon …
HTML Tags: Html language has two types of tags. Element placed in angular brackets is called “tag”. Paired tags: These are also called Non-empty elements. Pair tag is a combination of start and end tag. …
HTML Attributes: Attributes are used to give some additional meaning to content encapsulated by its element. Attributes consists two parts Name Value Attribute name and value must be separated with is equal to (=) sign. …
HTML Versions: The following table represents the years and versions Version Year HTML 1991 HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 XHTML 2000 HTML5 2014 Simple HTML document : DOCTYPE : “DOCTYPE” means …
Paragraphs: We can directly specify the text with body tag. Without tags, if we write any text data is called unformatted text. It shows on the webpage as we mentioned. When we run the above …
HTML pre Tag : To display text in Pre formatted format. Text in a <pre> element is displayed with pre-defined format. It is in a fixed-width and font (usually Courier), and it preserves both spaces …
<a> represents “anchor tag” By using this tag we can display the hyperlinks on the WebPages. Hyperlinks we are using to open external web pages in the current window. “href” stands for hyperlink reference and …
Sub attributes: In some of the cases, every attribute may have sub attributes to apply properties to that element. Best example of sub attributes is “events”. “event” is an action performed on the component such …
HTML Formatting: HTML defines special elements, for defining text with a special meaning. HTML uses elements like <b> and <i> for formatting output, like bold or italic text. SubScript and SuperScript: HTML Abbreviations: The HTML …