SlideShare una empresa de Scribd logo
1 de 44
CS 299 – Web Programming and Design
Introduction to HTML
CS 299 – Web Programming and Design 2
HTML: HyperText Markup Language
• HTML documents are simply text documents
with a specific form
– Documents comprised of content and markup tags
– Content: actual information being conveyed
– The markup tags tell the Web browser how to
display the page
– An HTML file must have an htm or html file
extension
– An HTML file can be created using a simple text
editor
HTML Editors
● HTML editors are called “WYSIWYG”
• What You See Is What You Get!
● Examples of HTML Editors:
• Dreamweaver
• Front Page
• Go Live
HTML Editors:
● Cons
– They do not always
generate clean HTML
● Add redundant tags
● Add their own tags
– They do not offer good
graphic tools to
manipulate images
– It can be hard to fix
HTML tags since every
time you open a
document, code is added.
● Pros
– Good for beginners
• You do not have to know
much HTML to use editors
• It is easy to create complex
tables, image maps, and use
advanced functions such
as Style Sheets and
JavaScript
• Easy for design due to the
WYSIWYG interface
CS 299 – Web Programming and Design 5
HTML Tags
• HTML tags are used to mark-up HTML
elements
– Surrounded by angle brackets < and >
– HTML tags normally come in pairs, like <tagname>
(start tag) and </tagname> (end tag)
– The text between the start and end tags is the
element content
– Not case-sensitive
– Follow the latest web standards:
• Use lowercase tags
CS 299 – Web Programming and Design 6
Tag Attributes
• Tags can have attributes that provide
additional information to an HTML element
– Attributes always come in name/value pairs like:
name=“value”
– Attributes are always specified in the start tag
– Attribute values should always be enclosed in
quotes. Double quotes are most common.
– Also case-insensitive: however, lowercase is
recommended
– <tagname a1=“v1” a2=“v2”></tagname>
– For example, <table border=“0”> is a start tag that
defines a table that has no borders
CS 299 – Web Programming and Design 7
HTML Document Structure
• Entire document enclosed within <html> and
</html> tags
• Two subparts:
– Head
• Enclosed within <head> and </head>
• Within the head, more tags can be used to specify title
of the page, meta-information (page description,
keywords, author of the document, last modified, and
other metadata), etc.
– Body
• Enclosed within <body> and </body>
• Within the body, content is to be displayed
• Other tags can be embedded in the body
CS 299 – Web Programming and Design 8
Our First Experience
• If you are running Windows, start Notepad
• If you are on a Mac, start SimpleText
• Type in the following:
• Open this file using a browser, and you will see…
<html>
<head>
<title>Title of page</title>
</head>
<body>
This is my first homepage. <b>This text is bold</b>
</body>
</html>
CS 299 – Web Programming and Design 9
We’ll take a look at…
• HTML Basics
(http://www.w3schools.com/html/html_intro.asp):
– HTML Elements
– HTML Headings
– HTML Paragraphs
– HTML Formatting
– HTML Styles
– HTML Images
– HTML Tables
– HTML Lists
– HTML iFrames
– HTML Colors
CS 299 – Web Programming and Design 10
HTML Layout
• One common way is to use HTML tables
to format the layout of an HTML page
– The trick is to use a table without borders, and maybe a
little extra cell-padding
• Other tips:
– Keep screen resolution in mind
– Use color to define spaces
– Align your images
– Balance the graphics and text on a page
– Think about text width – scan length 7 – 11 words
– Centering text is inadvisable (<p style="text-
align:justify">)
CS 299 – Web Programming and Design 11
HTML Frames
• HTML frames are a means of having several
browser windows open within a single larger
window
• Each HTML document is called a frame
• Disadvantages:
– Must keep track of more HTML documents
– Difficult to print the entire page
HTML Document Structure
● The HTML document is divided into two major parts:
• HEAD: contains information about the document:
• Title of the page (which appears at the top of the browser
window)
• Meta tags: used to describe the content (used by Search
engines)
• JavaScript and Style sheets generally require statements in the
document Head
• BODY: Contains the actual content of the document
• This is the part that will be displayed in the browser
window
Sample HTML Document
<HTML>
<HEAD>
<TITLE> My web page </TITLE>
</HEAD>
<BODY>
Content of the document
</BODY>
</HTML>
HTML Tags
● All HTML tags are made up of a tag name and
sometimes they are followed by an optional list of
attributes which all appear between angle brackets < >
● Nothing within the brackets will be displayed by the browser (unless
the HTML is incorrectly written and the browser interprets the tags
as part of the content)
● Attributes are properties that extend or refine the tag’s functions
HTML Tags
● Standalone tags
– There are a few HTML tags which do not use
an end tag and are used for standalone
elements on the page:
<img> to display an image
<BR> Line break
<HR> header
HTML Tags
● Attributes
<body bgcolor=“khaki” text=“#000000” link=“blue” vlink=“brown”
alink=“black” >
● Attributes are added within a tag to extend a tag’s action.
● You can add multiple attributes within a single tag.
● Attributes belong after the tag name; each attribute should be separated by
one or more spaces.
● Most attributes take values, which follow an equal sign “=“
● after the attribute’s name.
● Values are limited to 1024 characters in length.
Basic Syntax
▪ Most (but not all!) HTML tags have a start
tag and an end tag:
▪ <H1>Hello, world!</H1>
▪ Basic Document Structure
▪ header: information about the page, e.g.
the title.
▪ body: the actual content of the page.
▪ document starts with
▪ <HTML> and ends with </HTML>
This is Information which the browser
will ignore:
● Tabs
● multiple spaces will appear as a single space
● Example:
–
“Hello,
How are you?”
The browser will ignore the blanks and new
line:
Hello, How are you?
<P> v. <BR> Tags
▪ <BR>: Break
▪ <P>: Paragraph tag. Creates more space
than a BR tag.
▪ <HR>: Creates a Horizontal Rule
Paragraph Tag <P>
● Leaves one empty line after the tag
● Multiple <P> tags with no intervening text
is interpreted as redundant by all browsers
and will display a single <P> tag
Line break <BR>
● This tag breaks the line and starts text at a
new line.
● It will not add an empty line like the
paragraph tag
● Multiple <br> tags will display multiple
line breaks
Using blockquotes
● Use <blockquote> …. </blockquote> to set up a “block”
of text. Nested blockquotes will further indent.
● For example:
<blockquote>Tiffany was one of America's most acclaimed and multitalented artists
working in the late 19th and early 20th centuries.
<blockquote>Of all of Tiffany's artistic endeavors, stained glass brought him the
greatest recognition. </blockquote></blockquote>
… will display as:
Tiffany was one of America's most acclaimed and multitalented artists
working in the late 19th and early 20th centuries.
Of all of Tiffany's artistic endeavors, stained glass brought him the
greatest recognition.
Comments <!-- -->
● Browser will NOT display text in between
<!-- This is a comment -->
<!-- This is another
comment
-->
● I. E. uses the following tag as a comment:
<comment> this a comment </comment>
Headings: <h1> .. <h6>
● You can create Headlines of various sizes on
your page
● Headlines appear as bold letters
● An empty line will also follow the headlines.
● Used for titles
– H1 is the largest font and h6 is the smallest heading
– Headings need an end tag </h1>
Font Tags to specify color, font
type and size
<FONT FACE=ARIAL SIZE=6>
<B>The Curse of Xanadu</B>
</FONT>
<FONT FACE=ARIAL SIZE=3>
by By Gary Wolf, <I>Wired Magazine</I>
</FONT>
▪ Font tags:
▪ face: Arial, Courier, etc.
▪ size: e.g. 3, 6
▪ color: e.g. “RED”, “GREEN”, etc.
Text format tags
● Bold: <b> some text </b> or <strong>
● Italic <I> some text </I> or <em>
● <HR> (Horizontal Rule) Displays horizontal line in the browser
window. The line fills the window from left to the right margins.
It’s useful to separate sections of your document
● You can use attributes with <hr> such as
– <hr width=“70%”>
Backgrounds
● Use < body bgcolor = “ …” > for a
background color with a hex version of a
web-safe color:
<body bgcolor = “ccffff”>
● For a tiled background using an image file:
<BODY background="backgroundPicture.gif">
Lists
● Lists are used to organize items in the
browser window:
● Unordered list: Bulleted list (most popular), list
items with no particular order
● Ordered list: Numbered list
Lists
▪ HTML supports two types of Lists:
▪ Ordered Lists (OL): e.g. 1,2,3
▪ UnOrdered Lists (UL): e.g. bullets.
▪ Basic Syntax:
<UL>
<LI>Item 1
<LI>Item 2
</UL>
Unordered list:
– Unordered list: Bulleted list
(most popular), lists items
with no particular order
Fruit
<UL>
<LI> Banana
<LI>Grape
</UL>
Fruit
• Banana
• Grape
Ordered list:
● Numbered list:
Fruit
<ol>
<LI> Banana
<LI>Grape
</OL>
Fruit
1. Banana
2. Grape
Hyperlinks (Anchor Tag):
● Hyperlinks are used for linking:
● within the same page (Named tags)
● To another page in your web site (Relative Link or local
link)
● To another page outside your web site (Absolute or remote
link)
● Email Link
● Hyper Links: are highlighted and underlined.
When you click on it, it takes you to another
page on the web.
<A command=“target”>highlighted text</A>
Hyperlinks:
● Absolute Link: These are links to another page
outside of your web site. These links specify the
entire URL of the page:
<A HREF=“http://www.nyu.edu/”>NYU Web Site</A>
NYU Web Site
Hyperlinks:
● Relative Link: These are links to another
page in your site so you do not have to
specify the entire URL.
<A HREF=“index.html”>Go back to main page</A>
Go back to main page
Targeted Links
▪ A tag includes a target attribute. If
you specify target=“_blank”, a new
browser window will be opened.
▪ <A HREF=“http://www.nyu.edu”
target="_blank”> NYU</A>
Email Link:
● You can e-mail someone:
<a href=“mailto:jj1@nyu.edu”>Send email to
J.J.</A>
HTML Tables
▪ Tables represent a simple mechanism for
creating rows and columns of data.
▪ This is a great tool for laying out the
content of any web page, especially when
you omit the border by using:
▪ … border = “0” …
▪ Tables are very widely used and supported
by all common browsers.
▪ Tables use a very simple tag structure.
● Tables tags starts with
1. <TABLE> tag, then
1. <TR> defines table rows.
• Each <TR> represents one row in the table.
• The number of rows is determined by the number of <TR>
2. <TD> Table data or <TH> Table Header can follow the <TR> tag
• The number of cells in each row is determined by the number of <TH> (Table
Header) and/or <TD> (Table data) tags contained within that row.
• <TH> text will be in bold, and centered
2. <table>
</table>
HTML - Tables
<tr> <td> cell 1 <th> cell 2 <th> cell 3 </tr>
<tr> <td> cell 4 <td> cell 5 <td> cell 6 </tr>
<tr> <td> cell 7 <td> cell 8 <td> cell 9 </tr>
Basic Tag Structure
<TABLE>
<TR >
<TH>Ticker</TH>
<TH>Price</TH>
</TR>
<TR>
<TD>MSFT</TD>
<TD>71 1/16</TD>
</TR>
<TR>
<TD>KO</TD>
<TD>46 15/16</TD>
</TR>
</TABLE>
TR: Table Row
TH: Table Heading
TD: Table Data
Every <TD> must have a
matching
</TD>.
Every <TR> must have
a matching </TR>.
<TABLE ALIGN=“left" BORDER=0 BGCOLOR=“cyan“ width=600 cellpadding=0
cellspacing=0>
● Align: "left", "center" or "right“ - "left" is the default
● Border: thickness of the border in pixels - 0 for no borders
● Bgcolor: is background color in HEX or as a name color
● Background=url (works with IE only)
● Cellpading=n (n is number of pixels (space) between cell content and its border
● Cellspacing=n (n is number of pixels (space) between cells)
● Height=n (height of table in pixels or percentages 100%)
● Width=n (Width of table in pixels or percentages 100%)
Table Attributes
41
HTML and Multimedia
Images
<img src= "logoblue.gif" width="153"
height="31" border="0" alt="W I R E D">
▪ Image Attributes
▪ src: URL or filename for the image
▪ width/height: not required
▪ border: not required.
▪ alt: recommended for users running a text browser.
Adding multimedia files
● <a href=“filename.extension> listen to sound file </a>
● <a href=“sound1.wav> listen to sound file </a>
● <a href=“movie1.mov> view movie clip </a>
File Type Extention/Mime type
================================
plain text: .txt
HTML document: .html
GIF image: .gif or .jpg or .png
Acrobat file: .pdf
AIFF sound file: .aiff .au . wav
MP3 .mp3
QuickTime movie: .mov
MPEG movie: .mpeg or .mpg
Multimedia Filetypes

Más contenido relacionado

La actualidad más candente

Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
Jussi Pohjolainen
 
Castro Chapter 3
Castro Chapter 3Castro Chapter 3
Castro Chapter 3
Jeff Byrnes
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basics
messinam
 

La actualidad más candente (20)

(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
CSS
CSSCSS
CSS
 
GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1GDI Seattle Intro to HTML and CSS - Class 1
GDI Seattle Intro to HTML and CSS - Class 1
 
Css
CssCss
Css
 
Html Expression Web
Html Expression WebHtml Expression Web
Html Expression Web
 
Castro Chapter 3
Castro Chapter 3Castro Chapter 3
Castro Chapter 3
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
Html introduction by ikram niaz
Html introduction by ikram niazHtml introduction by ikram niaz
Html introduction by ikram niaz
 
Intro to HTML & CSS
Intro to HTML & CSSIntro to HTML & CSS
Intro to HTML & CSS
 
Html5
Html5Html5
Html5
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basics
 
2a web technology html basics 1
2a web technology html basics 12a web technology html basics 1
2a web technology html basics 1
 
Introduction to WEB HTML, CSS
Introduction to WEB HTML, CSSIntroduction to WEB HTML, CSS
Introduction to WEB HTML, CSS
 
HTML Bootcamp
HTML BootcampHTML Bootcamp
HTML Bootcamp
 
HTML & CSS Workshop Notes
HTML & CSS Workshop NotesHTML & CSS Workshop Notes
HTML & CSS Workshop Notes
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1HTML 5 Simple Tutorial Part 1
HTML 5 Simple Tutorial Part 1
 

Similar a Html.ppt

html css intro sanskar , saurabh.pptx
html css intro  sanskar , saurabh.pptxhtml css intro  sanskar , saurabh.pptx
html css intro sanskar , saurabh.pptx
Sanskardubey24
 
Ankit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptxAnkit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptx
HKShab
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
ubaidullah75790
 
HTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).pptHTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).ppt
Dianajeon3
 
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptxHTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
TEJASARGADE5
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
BagHarki
 

Similar a Html.ppt (20)

Html
HtmlHtml
Html
 
html css intro sanskar , saurabh.pptx
html css intro  sanskar , saurabh.pptxhtml css intro  sanskar , saurabh.pptx
html css intro sanskar , saurabh.pptx
 
Ankit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptxAnkit (221348051) BCA-Aiml.pptx
Ankit (221348051) BCA-Aiml.pptx
 
html
htmlhtml
html
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
FYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcssFYBSC IT Web Programming Unit I HTML 5 & andcss
FYBSC IT Web Programming Unit I HTML 5 & andcss
 
HTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).pptHTML_JavaScript_Malaysia_2008 (2).ppt
HTML_JavaScript_Malaysia_2008 (2).ppt
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptxHTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
HTML 5_cfbe4b8d-092saawww24bb33cb2358.pptx
 
Lecture 2 introduction to html
Lecture 2  introduction to htmlLecture 2  introduction to html
Lecture 2 introduction to html
 
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJSBasic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
Basic of HTML, CSS(StyleSheet), JavaScript(js), Bootstrap, JSON & AngularJS
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
 
Introduction to HTML.pptx
Introduction to HTML.pptxIntroduction to HTML.pptx
Introduction to HTML.pptx
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Html5
Html5 Html5
Html5
 
HTML
HTMLHTML
HTML
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Introduction to HTML Communication Skills
Introduction to HTML Communication SkillsIntroduction to HTML Communication Skills
Introduction to HTML Communication Skills
 
Class1slides
Class1slidesClass1slides
Class1slides
 

Último

Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
shivangimorya083
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
JohnnyPlasten
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
MarinCaroMartnezBerg
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
shambhavirathore45
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
amitlee9823
 

Último (20)

Zuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptxZuja dropshipping via API with DroFx.pptx
Zuja dropshipping via API with DroFx.pptx
 
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in  KishangarhDelhi 99530 vip 56974 Genuine Escort Service Call Girls in  Kishangarh
Delhi 99530 vip 56974 Genuine Escort Service Call Girls in Kishangarh
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
Smarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptxSmarteg dropshipping via API with DroFx.pptx
Smarteg dropshipping via API with DroFx.pptx
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...Determinants of health, dimensions of health, positive health and spectrum of...
Determinants of health, dimensions of health, positive health and spectrum of...
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
Best VIP Call Girls Noida Sector 39 Call Me: 8448380779
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 

Html.ppt

  • 1. CS 299 – Web Programming and Design Introduction to HTML
  • 2. CS 299 – Web Programming and Design 2 HTML: HyperText Markup Language • HTML documents are simply text documents with a specific form – Documents comprised of content and markup tags – Content: actual information being conveyed – The markup tags tell the Web browser how to display the page – An HTML file must have an htm or html file extension – An HTML file can be created using a simple text editor
  • 3. HTML Editors ● HTML editors are called “WYSIWYG” • What You See Is What You Get! ● Examples of HTML Editors: • Dreamweaver • Front Page • Go Live
  • 4. HTML Editors: ● Cons – They do not always generate clean HTML ● Add redundant tags ● Add their own tags – They do not offer good graphic tools to manipulate images – It can be hard to fix HTML tags since every time you open a document, code is added. ● Pros – Good for beginners • You do not have to know much HTML to use editors • It is easy to create complex tables, image maps, and use advanced functions such as Style Sheets and JavaScript • Easy for design due to the WYSIWYG interface
  • 5. CS 299 – Web Programming and Design 5 HTML Tags • HTML tags are used to mark-up HTML elements – Surrounded by angle brackets < and > – HTML tags normally come in pairs, like <tagname> (start tag) and </tagname> (end tag) – The text between the start and end tags is the element content – Not case-sensitive – Follow the latest web standards: • Use lowercase tags
  • 6. CS 299 – Web Programming and Design 6 Tag Attributes • Tags can have attributes that provide additional information to an HTML element – Attributes always come in name/value pairs like: name=“value” – Attributes are always specified in the start tag – Attribute values should always be enclosed in quotes. Double quotes are most common. – Also case-insensitive: however, lowercase is recommended – <tagname a1=“v1” a2=“v2”></tagname> – For example, <table border=“0”> is a start tag that defines a table that has no borders
  • 7. CS 299 – Web Programming and Design 7 HTML Document Structure • Entire document enclosed within <html> and </html> tags • Two subparts: – Head • Enclosed within <head> and </head> • Within the head, more tags can be used to specify title of the page, meta-information (page description, keywords, author of the document, last modified, and other metadata), etc. – Body • Enclosed within <body> and </body> • Within the body, content is to be displayed • Other tags can be embedded in the body
  • 8. CS 299 – Web Programming and Design 8 Our First Experience • If you are running Windows, start Notepad • If you are on a Mac, start SimpleText • Type in the following: • Open this file using a browser, and you will see… <html> <head> <title>Title of page</title> </head> <body> This is my first homepage. <b>This text is bold</b> </body> </html>
  • 9. CS 299 – Web Programming and Design 9 We’ll take a look at… • HTML Basics (http://www.w3schools.com/html/html_intro.asp): – HTML Elements – HTML Headings – HTML Paragraphs – HTML Formatting – HTML Styles – HTML Images – HTML Tables – HTML Lists – HTML iFrames – HTML Colors
  • 10. CS 299 – Web Programming and Design 10 HTML Layout • One common way is to use HTML tables to format the layout of an HTML page – The trick is to use a table without borders, and maybe a little extra cell-padding • Other tips: – Keep screen resolution in mind – Use color to define spaces – Align your images – Balance the graphics and text on a page – Think about text width – scan length 7 – 11 words – Centering text is inadvisable (<p style="text- align:justify">)
  • 11. CS 299 – Web Programming and Design 11 HTML Frames • HTML frames are a means of having several browser windows open within a single larger window • Each HTML document is called a frame • Disadvantages: – Must keep track of more HTML documents – Difficult to print the entire page
  • 12. HTML Document Structure ● The HTML document is divided into two major parts: • HEAD: contains information about the document: • Title of the page (which appears at the top of the browser window) • Meta tags: used to describe the content (used by Search engines) • JavaScript and Style sheets generally require statements in the document Head • BODY: Contains the actual content of the document • This is the part that will be displayed in the browser window
  • 13. Sample HTML Document <HTML> <HEAD> <TITLE> My web page </TITLE> </HEAD> <BODY> Content of the document </BODY> </HTML>
  • 14. HTML Tags ● All HTML tags are made up of a tag name and sometimes they are followed by an optional list of attributes which all appear between angle brackets < > ● Nothing within the brackets will be displayed by the browser (unless the HTML is incorrectly written and the browser interprets the tags as part of the content) ● Attributes are properties that extend or refine the tag’s functions
  • 15. HTML Tags ● Standalone tags – There are a few HTML tags which do not use an end tag and are used for standalone elements on the page: <img> to display an image <BR> Line break <HR> header
  • 16. HTML Tags ● Attributes <body bgcolor=“khaki” text=“#000000” link=“blue” vlink=“brown” alink=“black” > ● Attributes are added within a tag to extend a tag’s action. ● You can add multiple attributes within a single tag. ● Attributes belong after the tag name; each attribute should be separated by one or more spaces. ● Most attributes take values, which follow an equal sign “=“ ● after the attribute’s name. ● Values are limited to 1024 characters in length.
  • 17. Basic Syntax ▪ Most (but not all!) HTML tags have a start tag and an end tag: ▪ <H1>Hello, world!</H1> ▪ Basic Document Structure ▪ header: information about the page, e.g. the title. ▪ body: the actual content of the page. ▪ document starts with ▪ <HTML> and ends with </HTML>
  • 18. This is Information which the browser will ignore: ● Tabs ● multiple spaces will appear as a single space ● Example: – “Hello, How are you?” The browser will ignore the blanks and new line: Hello, How are you?
  • 19. <P> v. <BR> Tags ▪ <BR>: Break ▪ <P>: Paragraph tag. Creates more space than a BR tag. ▪ <HR>: Creates a Horizontal Rule
  • 20. Paragraph Tag <P> ● Leaves one empty line after the tag ● Multiple <P> tags with no intervening text is interpreted as redundant by all browsers and will display a single <P> tag
  • 21. Line break <BR> ● This tag breaks the line and starts text at a new line. ● It will not add an empty line like the paragraph tag ● Multiple <br> tags will display multiple line breaks
  • 22. Using blockquotes ● Use <blockquote> …. </blockquote> to set up a “block” of text. Nested blockquotes will further indent. ● For example: <blockquote>Tiffany was one of America's most acclaimed and multitalented artists working in the late 19th and early 20th centuries. <blockquote>Of all of Tiffany's artistic endeavors, stained glass brought him the greatest recognition. </blockquote></blockquote> … will display as: Tiffany was one of America's most acclaimed and multitalented artists working in the late 19th and early 20th centuries. Of all of Tiffany's artistic endeavors, stained glass brought him the greatest recognition.
  • 23. Comments <!-- --> ● Browser will NOT display text in between <!-- This is a comment --> <!-- This is another comment --> ● I. E. uses the following tag as a comment: <comment> this a comment </comment>
  • 24. Headings: <h1> .. <h6> ● You can create Headlines of various sizes on your page ● Headlines appear as bold letters ● An empty line will also follow the headlines. ● Used for titles – H1 is the largest font and h6 is the smallest heading – Headings need an end tag </h1>
  • 25. Font Tags to specify color, font type and size <FONT FACE=ARIAL SIZE=6> <B>The Curse of Xanadu</B> </FONT> <FONT FACE=ARIAL SIZE=3> by By Gary Wolf, <I>Wired Magazine</I> </FONT> ▪ Font tags: ▪ face: Arial, Courier, etc. ▪ size: e.g. 3, 6 ▪ color: e.g. “RED”, “GREEN”, etc.
  • 26. Text format tags ● Bold: <b> some text </b> or <strong> ● Italic <I> some text </I> or <em> ● <HR> (Horizontal Rule) Displays horizontal line in the browser window. The line fills the window from left to the right margins. It’s useful to separate sections of your document ● You can use attributes with <hr> such as – <hr width=“70%”>
  • 27. Backgrounds ● Use < body bgcolor = “ …” > for a background color with a hex version of a web-safe color: <body bgcolor = “ccffff”> ● For a tiled background using an image file: <BODY background="backgroundPicture.gif">
  • 28. Lists ● Lists are used to organize items in the browser window: ● Unordered list: Bulleted list (most popular), list items with no particular order ● Ordered list: Numbered list
  • 29. Lists ▪ HTML supports two types of Lists: ▪ Ordered Lists (OL): e.g. 1,2,3 ▪ UnOrdered Lists (UL): e.g. bullets. ▪ Basic Syntax: <UL> <LI>Item 1 <LI>Item 2 </UL>
  • 30. Unordered list: – Unordered list: Bulleted list (most popular), lists items with no particular order Fruit <UL> <LI> Banana <LI>Grape </UL> Fruit • Banana • Grape
  • 31. Ordered list: ● Numbered list: Fruit <ol> <LI> Banana <LI>Grape </OL> Fruit 1. Banana 2. Grape
  • 32. Hyperlinks (Anchor Tag): ● Hyperlinks are used for linking: ● within the same page (Named tags) ● To another page in your web site (Relative Link or local link) ● To another page outside your web site (Absolute or remote link) ● Email Link ● Hyper Links: are highlighted and underlined. When you click on it, it takes you to another page on the web. <A command=“target”>highlighted text</A>
  • 33. Hyperlinks: ● Absolute Link: These are links to another page outside of your web site. These links specify the entire URL of the page: <A HREF=“http://www.nyu.edu/”>NYU Web Site</A> NYU Web Site
  • 34. Hyperlinks: ● Relative Link: These are links to another page in your site so you do not have to specify the entire URL. <A HREF=“index.html”>Go back to main page</A> Go back to main page
  • 35. Targeted Links ▪ A tag includes a target attribute. If you specify target=“_blank”, a new browser window will be opened. ▪ <A HREF=“http://www.nyu.edu” target="_blank”> NYU</A>
  • 36. Email Link: ● You can e-mail someone: <a href=“mailto:jj1@nyu.edu”>Send email to J.J.</A>
  • 37. HTML Tables ▪ Tables represent a simple mechanism for creating rows and columns of data. ▪ This is a great tool for laying out the content of any web page, especially when you omit the border by using: ▪ … border = “0” … ▪ Tables are very widely used and supported by all common browsers. ▪ Tables use a very simple tag structure.
  • 38. ● Tables tags starts with 1. <TABLE> tag, then 1. <TR> defines table rows. • Each <TR> represents one row in the table. • The number of rows is determined by the number of <TR> 2. <TD> Table data or <TH> Table Header can follow the <TR> tag • The number of cells in each row is determined by the number of <TH> (Table Header) and/or <TD> (Table data) tags contained within that row. • <TH> text will be in bold, and centered 2. <table> </table> HTML - Tables <tr> <td> cell 1 <th> cell 2 <th> cell 3 </tr> <tr> <td> cell 4 <td> cell 5 <td> cell 6 </tr> <tr> <td> cell 7 <td> cell 8 <td> cell 9 </tr>
  • 39. Basic Tag Structure <TABLE> <TR > <TH>Ticker</TH> <TH>Price</TH> </TR> <TR> <TD>MSFT</TD> <TD>71 1/16</TD> </TR> <TR> <TD>KO</TD> <TD>46 15/16</TD> </TR> </TABLE> TR: Table Row TH: Table Heading TD: Table Data Every <TD> must have a matching </TD>. Every <TR> must have a matching </TR>.
  • 40. <TABLE ALIGN=“left" BORDER=0 BGCOLOR=“cyan“ width=600 cellpadding=0 cellspacing=0> ● Align: "left", "center" or "right“ - "left" is the default ● Border: thickness of the border in pixels - 0 for no borders ● Bgcolor: is background color in HEX or as a name color ● Background=url (works with IE only) ● Cellpading=n (n is number of pixels (space) between cell content and its border ● Cellspacing=n (n is number of pixels (space) between cells) ● Height=n (height of table in pixels or percentages 100%) ● Width=n (Width of table in pixels or percentages 100%) Table Attributes
  • 42. Images <img src= "logoblue.gif" width="153" height="31" border="0" alt="W I R E D"> ▪ Image Attributes ▪ src: URL or filename for the image ▪ width/height: not required ▪ border: not required. ▪ alt: recommended for users running a text browser.
  • 43. Adding multimedia files ● <a href=“filename.extension> listen to sound file </a> ● <a href=“sound1.wav> listen to sound file </a> ● <a href=“movie1.mov> view movie clip </a>
  • 44. File Type Extention/Mime type ================================ plain text: .txt HTML document: .html GIF image: .gif or .jpg or .png Acrobat file: .pdf AIFF sound file: .aiff .au . wav MP3 .mp3 QuickTime movie: .mov MPEG movie: .mpeg or .mpg Multimedia Filetypes