SlideShare a Scribd company logo
What is HTML?
• HTML stands for Hyper Text 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.
• What Is AWebpage?
•A webpage is the result of a team working together.
•A Web Server can be hardware/ software that let you deliver the webpage to
your browser.
•A browser reads and decodes the instructions, display exciting content on
the screen.
•The browser gets all the information asked for from the webserver, these
information are stored as HTML document Inside the webserver.
• HTML consists of 2 important parts which are:
1.Document Creation: this is what the user will see.
2. Tags: this is how they see it. HTML comprises of Tags
which are:
• Tag <html>: this tag <html> is the head of the family.
• It’s from this tag that the browser recognizes, it’s an HTML document
•<html> serves as the opening tag while </html> serves as the closing tag,
•So therefore for every opening tag <html> there is a closing tag
• </html>
• The <!DOCTYPE html> declaration defines that this document is an HTML5
document
• The <html> element is the root element of an HTML page
• The <head> element contains meta information about the HTML page
• The <title> element specifies a title for the HTML page (which is shown in the
browser's title bar or in the page's tab)
• The <body> element defines the document's body, and is a container for all the
visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
• The <h1> element defines a large heading
• The <p> element defines a paragraph
What is an HTMLElement?
• An HTML element is defined by a start tag, some content, and an end tag:
• <tagname> Content goes here...</tagname>
• The HTML element is everything from the start tag to the end tag:
<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
Some HTML elements have no content (like the <br> element). These elements are
called empty elements. Empty elements do not have an end tag!
TO Create Webpage
•Learn HTML Using Notepad or TextEdit
•https://notepad-plus-plus.org/downloads/v8.2/
•Windows+R = type “notepad” in run command and enter,
• notepad will open
Unit2_2024.pptx are related to PHP HTML CSS
Unit2_2024.pptx are related to PHP HTML CSS
• <html>
• <head>
• <title>Sanjivani College of Engineering</title>
• </head>
• <body>
• <h1>Electrical Engineering</h1>
• <p> I m from kopargaon, I m living in Maharastra </p>
• <p> I have completed my schooling in SanjivaniAcademy, Kopargaon</p>
• </body>
• </html
HTML TAGS
•<!DOCTYPE HTML>
•<html>….</html> which is also known as ROOT
ELEMENT. All Html web pages starts with this root
element.
•<title>….</title> which is also known as the TITLE PAGE.
•<body>….</body> which is also known as DOCUMENT
HEAD
•In the <body> tag, the tag paragraph is important when
making a webpage.
•Denotation of paragraph is <p> and </p>.
The Title Tag
Just like the title of MR. or MRS.
Adds meaning to your name, similarly you might have noticed the text in your browser
window? That’s the use of title tag.
Denotation : <title> </title>
Location : It’s placed inside the head tag.
Visibility : Not on the main page.
Usage : Lets you provide special instructions to the browser
• <!DOCTYPE html>
• <html>
• <head>
• <title>SRES Sanjivani</title>
• </head>
• </body>
• </html>
• The break tag
• The break tag lets you start a sentence from a new line in HTML.
• Denotation : <br> Location : It is placed inside the body tag.
• <!DOCTYPE html>
• <html>
• <body>
• <p>This is a Heading <br> This is a paragraph. <p>
• </body>
• </html>
• Bold, Italics, Underline Tags
• The Bold Tag Denotation : <b> </b>
• Location : It’s placed inside the body tag.
• The Italic Tag
• Denotation : <i> </i>
• Location : It’s placed inside the body tag.
• The Underline Tag
• Denotation : <u> </u>
• Location : It’s placed inside the body tag.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p> <b> welcome to Sanjivani College of Engineering </b> <br>
<i> I am Studying in Electrical Engineering </i> <br>
<u> This is my place kopargaon </u> <p>
</body>
</html>
• Headings In HTML
• We tend to prioritize the important stuff. In
HTML we make use of headings.
• Denotation : <h1>….</h1>, <h2>…..</h2>,
<h3>…..</h3>, <h4>……</h4>,
• <h5>……</h5>, <h6>…….</h6>
•Location: It’s placed inside the body tag.
•Usage: <h1> to <h6>- arranged on basis of
priority (<h1>- highest)
• <!DOCTYPE html>
• <html>
• <body>
• <h1> Welcome to Sanjivani College of Engineering </h1>
• <h2> Welcome to Sanjivani College of Engineering </h2>
• <h3> Welcome to Sanjivani College of Engineering </h3>
• <h4> Welcome to Sanjivani College of Engineering </h4>
• <h4> Welcome to Sanjivani College of Engineering </h4>
• <h5> Welcome to Sanjivani College of Engineering </h5>
• <h6> Welcome to Sanjivani College of Engineering </h6>
• </body>
• </html>
The Image Tag
• Denotation : <img/>
• Location : It’s placed inside the body tag.
• Usage : Let’s help you add an image to the page.
• The tag is used like this:
• <img src=“image’s path’’/>
• Src is an attribute to include the image’s path
• An attribute Provides additional information about your html tag.
• Note : the image’s path can also be an image URL.
• <!DOCTYPE html>
• <html>
• <body>
• <h1> Welcome to Sanjivani College of Engineering </h1>
• <p> Department of Mechatronics Engineering </p>
• <img src="G:SRESJan 2022IT for enggWeek4-HTMLimage tag.jpg"/>
• </body>
• </html>
Unit2_2024.pptx are related to PHP HTML CSS
• The Division Tag
• A simple straight webpage, will it look good and
be appealing? Of course not. Hence, the div tag
comes into the picture
• Denotation : <div> </div>
• Location : It’s placed inside the body tag
• Usage: Let’s get you to divide the page into
sections, especially with CSS. It will not
have any visible output now.
Unit2_2024.pptx are related to PHP HTML CSS

More Related Content

PPTX
WEB TECHNOLOGY in recent years 122334445
PPTX
Unit 2 Internet and web technology CSS report
PDF
Title, heading and paragraph tags
PPTX
HTML/HTML5
PDF
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
PDF
WEB PROGRAMMING bharathiar university bca unitII
PDF
HTML? What is Hyper Text Mark Up Language
PDF
HTML.pdf
WEB TECHNOLOGY in recent years 122334445
Unit 2 Internet and web technology CSS report
Title, heading and paragraph tags
HTML/HTML5
HSC INFORMATION TECHNOLOGY CHAPTER 1 ADVANCED WEB DESIGNING PART I.pdf
WEB PROGRAMMING bharathiar university bca unitII
HTML? What is Hyper Text Mark Up Language
HTML.pdf

Similar to Unit2_2024.pptx are related to PHP HTML CSS (20)

PPTX
HTML_HEADER PART TAGS .pptx
PDF
Jodddddddddddcomputer_Chapter_4.pptx.pdf
PPTX
Html (hypertext markup language)
PPTX
HTML.pptx
PPTX
Learning html. (Part- 1)
PPTX
Introduction to html
PPTX
PDF
HTML guide for beginners
PPTX
Basic Html Knowledge for students
PPTX
Html5.pptx
PPTX
Advance HTML
PDF
html.pdf
PPTX
web page.pptxb dvcdhgdhdbdvdhudvehsusvsudb
PDF
HTML-Part1
DOC
Html, xml and java script
PDF
Html tutorial
PDF
Html tutorial
PDF
Html tutorial
HTML_HEADER PART TAGS .pptx
Jodddddddddddcomputer_Chapter_4.pptx.pdf
Html (hypertext markup language)
HTML.pptx
Learning html. (Part- 1)
Introduction to html
HTML guide for beginners
Basic Html Knowledge for students
Html5.pptx
Advance HTML
html.pdf
web page.pptxb dvcdhgdhdbdvdhudvehsusvsudb
HTML-Part1
Html, xml and java script
Html tutorial
Html tutorial
Html tutorial
Ad

Recently uploaded (20)

DOCX
573137875-Attendance-Management-System-original
PPTX
Road Safety tips for School Kids by a k maurya.pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
The-Looming-Shadow-How-AI-Poses-Dangers-to-Humanity.pptx
PPTX
web development for engineering and engineering
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
Simulation of electric circuit laws using tinkercad.pptx
PPTX
Sustainable Sites - Green Building Construction
PPTX
Lesson 3_Tessellation.pptx finite Mathematics
PPTX
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
PDF
Arduino robotics embedded978-1-4302-3184-4.pdf
PDF
ETO & MEO Certificate of Competency Questions and Answers
PDF
composite construction of structures.pdf
PDF
Queuing formulas to evaluate throughputs and servers
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
573137875-Attendance-Management-System-original
Road Safety tips for School Kids by a k maurya.pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Strings in CPP - Strings in C++ are sequences of characters used to store and...
bas. eng. economics group 4 presentation 1.pptx
The-Looming-Shadow-How-AI-Poses-Dangers-to-Humanity.pptx
web development for engineering and engineering
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Simulation of electric circuit laws using tinkercad.pptx
Sustainable Sites - Green Building Construction
Lesson 3_Tessellation.pptx finite Mathematics
Unit 5 BSP.pptxytrrftyyydfyujfttyczcgvcd
Arduino robotics embedded978-1-4302-3184-4.pdf
ETO & MEO Certificate of Competency Questions and Answers
composite construction of structures.pdf
Queuing formulas to evaluate throughputs and servers
CYBER-CRIMES AND SECURITY A guide to understanding
Operating System & Kernel Study Guide-1 - converted.pdf
ANIMAL INTERVENTION WARNING SYSTEM (4).pptx
Ad

Unit2_2024.pptx are related to PHP HTML CSS

  • 1. What is HTML? • HTML stands for Hyper Text 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.
  • 2. • What Is AWebpage? •A webpage is the result of a team working together. •A Web Server can be hardware/ software that let you deliver the webpage to your browser. •A browser reads and decodes the instructions, display exciting content on the screen. •The browser gets all the information asked for from the webserver, these information are stored as HTML document Inside the webserver.
  • 3. • HTML consists of 2 important parts which are: 1.Document Creation: this is what the user will see. 2. Tags: this is how they see it. HTML comprises of Tags which are: • Tag <html>: this tag <html> is the head of the family. • It’s from this tag that the browser recognizes, it’s an HTML document •<html> serves as the opening tag while </html> serves as the closing tag, •So therefore for every opening tag <html> there is a closing tag • </html>
  • 4. • The <!DOCTYPE html> declaration defines that this document is an HTML5 document • The <html> element is the root element of an HTML page • The <head> element contains meta information about the HTML page • The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab) • The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. • The <h1> element defines a large heading • The <p> element defines a paragraph
  • 5. What is an HTMLElement? • An HTML element is defined by a start tag, some content, and an end tag: • <tagname> Content goes here...</tagname> • The HTML element is everything from the start tag to the end tag: <h1>My First Heading</h1> <p>My first paragraph</p>
  • 6. Start tag Element content End tag <h1> My First Heading </h1> <p> My first paragraph. </p> <br> none none Some HTML elements have no content (like the <br> element). These elements are called empty elements. Empty elements do not have an end tag!
  • 7. TO Create Webpage •Learn HTML Using Notepad or TextEdit •https://notepad-plus-plus.org/downloads/v8.2/ •Windows+R = type “notepad” in run command and enter, • notepad will open
  • 10. • <html> • <head> • <title>Sanjivani College of Engineering</title> • </head> • <body> • <h1>Electrical Engineering</h1> • <p> I m from kopargaon, I m living in Maharastra </p> • <p> I have completed my schooling in SanjivaniAcademy, Kopargaon</p> • </body> • </html
  • 11. HTML TAGS •<!DOCTYPE HTML> •<html>….</html> which is also known as ROOT ELEMENT. All Html web pages starts with this root element. •<title>….</title> which is also known as the TITLE PAGE. •<body>….</body> which is also known as DOCUMENT HEAD •In the <body> tag, the tag paragraph is important when making a webpage. •Denotation of paragraph is <p> and </p>.
  • 12. The Title Tag Just like the title of MR. or MRS. Adds meaning to your name, similarly you might have noticed the text in your browser window? That’s the use of title tag. Denotation : <title> </title> Location : It’s placed inside the head tag. Visibility : Not on the main page. Usage : Lets you provide special instructions to the browser
  • 13. • <!DOCTYPE html> • <html> • <head> • <title>SRES Sanjivani</title> • </head> • </body> • </html>
  • 14. • The break tag • The break tag lets you start a sentence from a new line in HTML. • Denotation : <br> Location : It is placed inside the body tag. • <!DOCTYPE html> • <html> • <body> • <p>This is a Heading <br> This is a paragraph. <p> • </body> • </html>
  • 15. • Bold, Italics, Underline Tags • The Bold Tag Denotation : <b> </b> • Location : It’s placed inside the body tag. • The Italic Tag • Denotation : <i> </i> • Location : It’s placed inside the body tag. • The Underline Tag • Denotation : <u> </u> • Location : It’s placed inside the body tag.
  • 16. <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p> <b> welcome to Sanjivani College of Engineering </b> <br> <i> I am Studying in Electrical Engineering </i> <br> <u> This is my place kopargaon </u> <p> </body> </html>
  • 17. • Headings In HTML • We tend to prioritize the important stuff. In HTML we make use of headings. • Denotation : <h1>….</h1>, <h2>…..</h2>, <h3>…..</h3>, <h4>……</h4>, • <h5>……</h5>, <h6>…….</h6> •Location: It’s placed inside the body tag. •Usage: <h1> to <h6>- arranged on basis of priority (<h1>- highest)
  • 18. • <!DOCTYPE html> • <html> • <body> • <h1> Welcome to Sanjivani College of Engineering </h1> • <h2> Welcome to Sanjivani College of Engineering </h2> • <h3> Welcome to Sanjivani College of Engineering </h3> • <h4> Welcome to Sanjivani College of Engineering </h4> • <h4> Welcome to Sanjivani College of Engineering </h4> • <h5> Welcome to Sanjivani College of Engineering </h5> • <h6> Welcome to Sanjivani College of Engineering </h6> • </body> • </html>
  • 19. The Image Tag • Denotation : <img/> • Location : It’s placed inside the body tag. • Usage : Let’s help you add an image to the page. • The tag is used like this: • <img src=“image’s path’’/> • Src is an attribute to include the image’s path • An attribute Provides additional information about your html tag. • Note : the image’s path can also be an image URL.
  • 20. • <!DOCTYPE html> • <html> • <body> • <h1> Welcome to Sanjivani College of Engineering </h1> • <p> Department of Mechatronics Engineering </p> • <img src="G:SRESJan 2022IT for enggWeek4-HTMLimage tag.jpg"/> • </body> • </html>
  • 22. • The Division Tag • A simple straight webpage, will it look good and be appealing? Of course not. Hence, the div tag comes into the picture • Denotation : <div> </div> • Location : It’s placed inside the body tag • Usage: Let’s get you to divide the page into sections, especially with CSS. It will not have any visible output now.