TT and KBD Web Development

HTML – TT (Teletype) and KBD (Keyboard) Tag

  • November 27, 2020
  • 0 Comments

HTML <TT> (Teletype) Element  The content of a <tt> element is written in monospaced font (like that of a teletype machine).   <tt> provides no semantic information about the text it encloses. It is purely used for text formatting purposes. <tt> is short for teletype, and instructs the browser to render the text similar to […]

ACRONYM & DFN Tag Web Development

HTML – ACRONYM & DFN Tag

  • November 27, 2020
  • 0 Comments

HTML <acronym> Element.  The <acronym> element allo<acronym> and closing </acronym> tags is an acronym. The title attribute on the opening <acronym> tag whose value is the full version of the acronym. For example, if you want to indicate that HTML as an acronym.ws you to indicate that the text between opening HTML Code <acronym title=’Hypertext […]

HTML - Cite, Q(Quotation), Var and Samp Tags Web Development

HTML – Cite, Q(Quotation), Var and Samp Tags

  • November 27, 2020
  • 0 Comments

HTML <cite> Element If you are quoting a text, you can indicate the source by placing it between an opening <cite> tag and a closing </cite> tag. The content of the <cite> element is rendered in italicized text by default.  HTML Code This HTML tutorial course will help you in <cite> Web Development Field </cite> […]

htmllist tags Web Development

HTML List Tags – UL, OL and DL

  • November 27, 2020
  • 0 Comments

There are many reasons you might want to add a lists to your pages, from putting your five favorite albums on your homepage to including a numbered set of instruction for visitors to follow. In HTML you can create three types of lists. Unordered Lists.  Ordered List.  Definition LIst. By using lists you can arrange […]

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

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

Element and Attributes Web Development

HTML – HTML Element and Attributes Group

  • October 9, 2020
  • 0 Comments

<HTML> Element The <html> element is the containing element for the whole HTML document. After the declaration of the DOCTYPE, each and every HTML document should have the <html> element opening and closing </html> tag.   If you are writing strict XHTML 1.0 the opening must also include a namespace identifier.  The concept of using […]

Create a Website Using HTML on Notepad HowTos

How to Create a Website Using HTML on Notepad

  • October 13, 2019
  • 0 Comments

Write a code for creating a website using HTML or HTML5? This basic build block concept is required for web page development. The recent version is HTML5 so we will most probably use HTML 5 coding structure for creating a website. You can copy this below code and use it on your editor and customize […]