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, […]