My Blog

    • Sample Page
Illustration of a bird flying.
  • HTML <cite> tag

    HTML <cite> tag specifies a citation, it provides reference or title to a creative work, quoted content, books, websites, a research paper, a blog-spot, painting, etc. The main purpose of adding <cite> element is to provide or identify the source of the quote or any content. The content written between <cite> tag renders in the…

    October 21, 2022
  • HTML <center> tag (Not Supported in HTML5)

    The HTML <center> is a block level element which contains both block level and inline contents within it. The content written between the <center> elements will be displayed at the middle of the page. The <center> tag has been deprecated in HTML 4 and obsolete in HTML5. Syntax Following are some specifications about the <center>…

    October 21, 2022
  • HTML <caption> tag

    HTML <caption> tag is used to add a caption or title of an HTML table. It should be used inside the <table> element and just after the <table> start tag. A table may contain only one <caption> element. Syntax: Following are some specifications about the <caption> tag Display Inline Start tag/End tag Both start and…

    October 21, 2022
  • HTML Canvas Tag

    The HTML canvas element provides HTML a bitmapped surface to work with. It is used to draw graphics on the web page. The HTML 5 <canvas> tag is used to draw graphics using scripting language like JavaScript. The <canvas> element is only a container for graphics, you must need a scripting language to draw the graphics. The <canvas> element…

    October 21, 2022
  • HTML Button Tag

    The <button> tag is used to create a clickable button within HTML form on your webpage. You can put content like text or image within the <button>……..</button> tag. You should always specify the type attribute for a <button> tag. Different browsers use different default type for the button element. HTML Button tag can be used…

    October 21, 2022
  • HTML <br> tag

    The <br> tag in HTML document is used to create a line break in a text. It is generally used in poem or address where the division of line is necessary. It is an empty tag, which means it does not need a company of end tag. If you place the <br> tag in the HTML code, then it…

    October 21, 2022
  • HTML <body> tag

    HTML <body> tag defines the main content of an HTML document which displays on the browser. It can contain text content, paragraphs, headings, images, tables, links, videos, etc. The <body> must be the second element after the <head> tag or it should be placed between </head> and </html> tags. This tag is required for every…

    October 21, 2022
  • HTML <blockquote> tag

    HTML <blockquote> tag is used to define a block of text which is quoted from another source. The Browser usually displays the content within <blockquote> tag as indented text. If you want to insert a long quote then use <blockquote> and for short or inline quote use <q> tag. Syntax: Following are some specifications about…

    October 21, 2022
  • HTML <big> tag (Not supported in HTML5)

    HTML <big> tag was used to increase the text font size one level bigger than the document’s base font size or surrounding text size, such as small to medium, medium to large, etc. Syntax: Following are some specifications about the <big> tag Display Inline Start tag/End tag Both start and End tag Usage Fonts and…

    October 21, 2022
  • HTML <bdo> tag

    HTML <bdo> tag stands for “bidirectional override” which is used to overrides the current/default text direction. This tag sets the direction of content within it to render on browser from left to right or right to left. The <bdo> tag is useful for the languages which are written from right to left such as Arabic…

    October 21, 2022
←Previous Page
1 … 105 106 107 108 109 … 113
Next Page→

My Blog

Proudly powered by WordPress