Posts

Showing posts from August, 2021

HTML PARAGRAPHS

  HTML PARAGRAPHS A paragraph always starts on a new line and is usually a block of text. 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. < p > This is a paragraph. < /p > < p > This is another paragraph. < /p > < p > This paragraph contains a lot of lines in the source code, but the browser ignores it. < /p > < p > This paragraph contains a lot of spaces in the source code, but the browser ignores it. < /p > =============================================================

HTML HEADINGS

 HTML HEADINGS  HTML headings are titles or subtitles that you want to display on a webpage.

HTML ATTRIBUTES

 HTML ATTRIBUTES HTML attributes provide additional information about HTML elements.

HTML Elements

  HTML  Elements                                                 ================================== An HTML element is defined by a start tag, some content, and an end tag. HTML Elements The HTML  element  is everything from the start tag to the end tag: < tagname > Content goes here... < /tagname > Examples of some HTML elements: < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > Start tag Element content End tag <h1> My First Heading </h1> <p> My first paragraph. </p> <br> none none

HTML Basic Examples

  HTML  Basic Examples  ---------------------------------------------------------------------------------  In this chapter we will show some basic HTML examples. Don't worry if we use tags you have not learned about yet. HTML Documents All HTML documents must start with a document type declaration:  <!DOCTYPE html> . The HTML document itself begins with  <html>  and ends with  </html> . The visible part of the HTML document is between  <body>  and  </body> . Example: < !DOCTYPE  html > < html > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html >                          i hope you  are enjoying this course.

HTML EDITORS || WHAT IS HTML EDITORS

  HTML  Editor

HTML INTRODUCTION or WHAT IS HTML.

  What is HTML? HTML stands for HyperText Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.                                     A Simple HTML Document Example: < !DOCTYPE  html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html > Example Explained The  <!DOCTYPE html>  the declaration defines that this document is an HTML  document The  <html>  element is the root element of an HTML page The  ...