Presentation By: Pratibha Jadhav. (24) Guided By: Prof - Milind Kulkarni
Presentation By: Pratibha Jadhav. (24) Guided By: Prof - Milind Kulkarni
What is HTML?
Hyper Text Markup Language
What is HTML?
HTML files
Text files Contain mark-up tags Tags direct how page is to be displayed by
browser Can be created from a simple text editor File extension .htm or .html
just fine.
page itself
Page Title
<title> to begin, and </title> to end Example: <title>Transcriptions Studio</title> *Note* that there are no spaces between <title> and
Text headings
<h1> and </h1> There are six defined heading sizes <h1> (largest) through <h6> (smallest)
Paragraphs
<p> and </p>
Text Example
<html> <header> <title>Transcriptions Studio</title> </header> <body> <h1>This is a big heading!</h1> <h2>This is a smaller heading</h2> <p>This is an example of a paragraph.</p> </body> </html>
HTML Organization
Spacing Spacing organizes your work! Spacing makes your files easy to read! Spacing makes no functional difference to your web browser Comments Comments are notes in your HTML file Comments make no functional difference to your web browser <!-- begins a comment, and --> ends it
THANK YOU