Posts

Showing posts from October, 2023

HTML-5 || TAGS || BASIC TO ADVANCE || PART-2

Image
  Programming Codester HTML [TUTORIAL-2] Hello Wonderful People! Let’s start with HTML basic! In previous tutorial we were studied about basic introduction of HTML Previous tutorial’s link is here: Html tags start with <> and end with </>. Tutorial : 2 Topic : paragraph image and heading   And Title tags HTML Paragraphs: ·        The HTML  <p>  element defines a paragraph. ·        A paragraph always starts on a new line, and browsers automatically add some white space (a margin) before and after a paragraph. Ex. <p>my name is programming codester</p> <p>coding is my passion</p> So output will be, my name is programming codester coding is my passion. HTML  Page Title Every web page should have a page title to describe the meaning of the page. The  <title>  element adds a title to your page: ·  ...