Skip to main content

Introduction to HTML: The Language of the Web Lecture: #1

Introduction to HTML: The Language of the Web

Objective: To understand the basic's of HTML and its role in web Development:

What is HTML?

  • HTML stands for Hyper Text Markup Language.
  • it is standard markup language for creating web pages .
  • HTML provides basics structure and content for web pages.


How Does HTML works?

  • HTML uses markup to structure content using tag's.
  • Tag's are enclosed in angle brackets , like <tag>.
  • Tag's define elements on a webpage;


Basic HTML Structure :

<!DOCTYPE html>

<html>

<head>

    <title>Document Title</title>

</head>

<body>

    <h1>Heading 1</h1>

    <p>This is a paragraph.</p>

</body>

</html>
  • <!DOCTYPE html>

  • '<html>' : Defines the document type of version.
  • '<head>' : The root element that contains all other elements.
  • '<title>' : Contain-meta information about the document, like the title.
  • '<body>' : Sets the title displayed in the browser tab.
  • '<h1>' : Represent a top-level heading.
  • '<p>' : Represent a Paragraph of a text.

Ok Guy's we will meet in next lecture in bottom i will have to share today's lecture notes kindly note this on your notebook for better learning's:
Thanks everyone Good-Bye ..!





Comments

Popular posts from this blog

Lists in HTML lecture #5

 Lists in HTML Title: Understand the Lists elements: objective: By the end of this lecture you will : Understands different types of HTML lists. Be able to create ordered and unordered Lists. Learn how to create nested lists. Apply list styling and attributes. Types of lists: HTML offers three types of lists Ordered Lists(OL): These are numbered and letters list is used to ordered items: Unordered Lists(UL): These are bulleted list used to order the items : Definition Lists(DL): These lists are used to define the terms and descriptions: How to create these lists: Order lists(OL):     <ol>          <li> Orange </li>         <li> Apple </li>         <li> Banana </li>     </ol> The ` <ol> ` tag is used to create ordered lists: The ` <li> ` tag is used to create a lists elements. Unordered Lists(UL):     <ul...