Tuesday, March 20, 2018

List Of All Basic Html Tags


<!--...--> Defines a comment  
<!DOCTYPE>  Defines the document type
 <a> Defines an anchor
 <abbr> Defines an abbreviation  
<b> Defines bold text  
<base /> Specifies the base URL/target for all relative URLs in a document  
<basefont /> Deprecated. Specifies a default color, size, or font for all the text in a document TF
<big> Defines big text  
<blockquote> Defines a long quotation  
<body> Defines the document's body  
<br /> Defines a single line break  
<button> Defines a clickable button  
<caption> Defines a table caption  
<center> Deprecated. Defines centered text TF
<cite> Defines a citation  
<code> Defines a piece of computer code  
<dd> Defines a description of an item in a definition list  
<del> Defines text that has been deleted from a document  
<dir> Deprecated. Defines a directory list TF
<div> Defines a section in a document  
<dl> Defines a definition list  
<dt> Defines a term (an item) in a definition list  
<em> Defines emphasized text   
<fieldset> Groups related elements in a form  
<font> Deprecated. Defines font, color, and size for text TF
<form> Defines an HTML form for user input  
<frame /> Defines a window (a frame) in a frameset F
<frameset> Defines a set of frames F
<h1> to <h6> Defines HTML headings  
<head> Defines information about the document  
<hr /> Defines a horizontal line  
<html> Defines the root of an HTML document  
<i> Defines italic text  
<iframe> Defines an inline frame TF
<img /> Defines an image  
<input /> Defines an input control  
<label> Defines a label for an <input> element  
<legend> Defines a caption for a <fieldset> element  
<li> Defines a list item  
<link /> Defines the relationship between a document and an external resource  
<map> Defines a client-side image-map   
<menu> Deprecated. Defines a menu list TF
<meta /> Defines metadata about an HTML document  
<noframes> Defines an alternate content for users that do not support frames TF
<noscript> Defines an alternate content for users that do not support client-side scripts  
<object> Defines an embedded object  
<ol> Defines an ordered list  
<optgroup> Defines a group of related options in a drop-down list  
<option> Defines an option in a drop-down list  
<p> Defines a paragraph  
<param /> Defines a parameter for an object  
<pre> Defines preformatted text  
<q> Defines a short quotation  
<s> Deprecated. Defines strikethrough text TF
<script> Defines a client-side script
<select> Defines a drop-down list  
<small> Defines smaller text  
<span> Defines a section in a document  
<strike> Deprecated. Defines strikethrough text TF
<strong> Defines strong text  
<style> Defines style information for a document  
<sub> Defines subscripted text  
<sup> Defines superscripted text  
<table> Defines a table  
<tbody> Groups the body content in a table  
<td> Defines a cell in a table  
<textarea> Defines a multiline input control (text area)  
<tfoot> Groups the footer content in a table  
<th> Defines a header cell in a table  
<thead> Groups the header content in a table  
<title> Defines a title for the document  
<tr> Defines a row in a table  
<tt> Defines teletype text  
<u> Deprecated. Defines underlined text TF
<ul> Defines an unordered list

No comments:

Post a Comment

Generate Even Numbers in a Range In PHP.

$start = 1; $end = 20; for ($i = $start; $i <= $end; $i++) {     if ($i % 2 == 0) {         echo $i . " is even.<br>";   ...