anchor tag Web Development

HTML – An Anchor Tag or Link Tag

  • October 22, 2020
  • 0 Comments

HTML allows linking to other Html documents as well as images. Clicking on a selection of text or an image on one web page will open an entire web page or an image. Text or image that provides such linkages is called hypertext, hyperlink, or a hotspot. Browser distinguishes hyperlinks from normal text. Hyperlinks appear […]

BOLD, ITALIC, UNDERLINE TAGS Web Development

HTML – Bold, Italic and Underline Tags

  • October 22, 2020
  • 0 Comments

Bold <b> Text Formatting Tag The <b> tag is used to Bold, the text on web pages, forms, paragraphs, lines, and anywhere. The <b> tag is the inline tag… which doesn’t produce a line break on its use. Syntax: <b> This is the bold tag </b> Output: This is the bold tag As you can […]

nesting structure Web Development

HTML – Nesting Structure

  • October 22, 2020
  • 0 Comments

Nesting tags in HTML is widely used while playing with HTML code. This is the most important thing while doing HTML coding. HTML tags should be arranged properly and closed properly. If the HTML tags are not arranged or closed properly, then there may occur problems. What is the Nesting of HTML Tag? Simply the […]

different types of html tags Web Development

HTML – Different Types of HTML Tags

  • October 22, 2020
  • 0 Comments

As you all know HTML language used to develop web pages is called HyerText Markup Language. HTML is the language interpreted by a Browser.  Web Pages are also called HTML document. HTML is a set of special codes that can be embedded in the text to add formatting and linking information. HTML specified Tags in HTML document. […]

html structure Web Development

HTML – Structure of HTML With Example

  • October 22, 2020
  • 0 Comments

Before going to write codes of HTML, you should know the structure of HTML, without knowing the structure it’s impossible to write HTML codes. You may get confused while writing codes and tags if you don’t know the structure so first of all, it’s better to know the structure of the HTML. In below example, […]

pragraph and break tag Web Development

HTML – Paragraph and Line Break Tags

  • October 15, 2020
  • 0 Comments

HTML <p> Paragraph Tag. Paragraph tags are used to separate the chunk of text with a small gap. There is a small gap between the two paragraphs.  The everything inside <p> tag is displayed as a paragraph. If we need to display text as separate paragraphs in a web document, we use <p> tags. This […]

blockquote element for quotes Web Development

HTML – Blockquote Element for Quotes

  • October 14, 2020
  • 0 Comments

TML <blockquote> Element When you want to quote a passage from another source, you should use the <blockquote> element. HTML Code <p>Words by Neil Patel. </p><blockquote>Going above and beyond involves making customers “feel special” and helping them out even when it may not make sense.</blockquote> HTML Output Words by Neil Patel. Going above and beyond […]

address and abbr tag Web Development

HTML – Address Tag and Abbr Tag

  • October 14, 2020
  • 0 Comments

HTML <ADDRESS> Element The HTML <address> tag defines contact information for the nearest <article> or <body> ancestor in the HTML document. Many documents need to contain a snail-mail address, and there is a special <address> element that is used to contain addresses. For example, here is the address for AnsMachine inside <address> element.  HTML Code […]

BIG Element & Small Element Web Development

HTML – BIG Element and Small Element

  • October 14, 2020
  • 0 Comments

HTML <BIG> Element. In early versions of HTML, there were 7 standard sizes of text, and the <big> element was introduced to make the contents of this element one font size larger than the rest of the text surrounding it (up to the largest size. These days you should avoid using this element because it […]

head element and body tag Web Development

Head Element and Body Tag in HTML

  • October 9, 2020
  • 0 Comments

HTML <HEAD> Element The<head> element is just a container for all other header elements. It is the first thing to appear after the opening of the <html> tag. Here the scriptwriter can show decorative scripts like CSS code or JavaScript code. The <head> tag has its closing tag also which ends above the start of […]