SlideShare una empresa de Scribd logo
1 de 24
Md. Ali Hosssain.
Web Designer.
Jr. Instructor, Graphic Arts Innstitute.
Email:Students.gai@gmail.com
Phone:01731402303
02/08/14
HTML Elements
HTML Element Syntax
•

An HTML element starts with a start tag / opening tag

•

An HTML element ends with an end tag / closing tag

•

The element content is everything between the start and the end tag

•

Some HTML elements have empty content

•

Empty elements are closed in the start tag

•

Most HTML elements can have attributes
Element

•

The <Head> element:

•

The <body> element:

•

The<head> element:

•

The <Title> element:

•

The <p> element:

•

The <h1> element:

02/08/14
02/08/14
HTML Attributes

•HTML elements can have attributes
•Attributes provide additional information about an element
•Attributes are always specified in the start tag
•Attributes come in name/value pairs like: name="value"

02/08/14
02/08/14
HTML BODY Element
<BODY attributename="attributevalue">
Deprecated attributes (but still used)

BACKGROUND=“Sunset.jpg” (can be tiled)
BGCOLOR=color
TEXT=“color”
LINK=“color” (unvisited links)
VLINK=“color” (visited links)
ALINK=color (when selected)

<body alink="#336666" background="test.jpg" bgcolor="red"
link="#00FF00" text="#FF0000" vlink="#00CC99">
02/08/14
Colors
Values for BGCOLOR and COLOR
many are predefined (red, blue, green, ...)
all colors can be specified as a six character hexadecimal value:

RRGGBB
FF0000 – red
888888 – gray
004400 – dark green
FFFF00 – yellow
000000-Black

02/08/14
02/08/14
<PRE> Preformatted Text
Special Characters
<PRE>
if (a < b) {
a++;
b = c * d;
}
else {
a--;
b = (b-1)/2;
}
</PRE>

Character

Use

<

&lt;

>

&gt;

&

&amp;

"

&quot;

Space

&nbsp;
02/08/14
<address>
Written by <a href="mailto:webmaster@example.com">Kamrul</a>.<br>
Visit us at:<br>
Example.com<br>
Dhanmondi Dhaka<br>
Bangladesh
</address>
<h1>Graphics arts Institute</h1>
<blockquote >
Graphics Arts institute is the largest arts
institute In Bangladesh
</blockquote>

02/08/14
Physical Character Styles
<H1>Physical Character Styles</H1>
<B>Bold</B><BR>
<I>Italic</I><BR>
<TT>Teletype (Monospaced)</TT><BR>
<U>Underlined</U><BR>
Subscripts: f<SUB>0</SUB> + f<SUB>1</SUB><BR>
Superscripts: x<SUP>2</SUP> + y<SUP>2</SUP><BR>
<SMALL>Smaller</SMALL><BR>
<BIG>Bigger</BIG><BR>
<STRIKE>Strike Through</STRIKE><BR>
<B><I>Bold Italic</I></B><BR>
<BIG><TT>Big Monospaced</TT></BIG><BR>
<SMALL><I>Small Italic</I></SMALL><BR>
<FONT COLOR="GRAY">Gray</FONT><BR>
<DEL>Delete</DEL><BR>
<INS>Insert</INS><BR>
02/08/14
<H1>Logical Character Styles
Logical Character Styles</H1>

<EM>Emphasized</EM><BR>
<STRONG>Strongly
Emphasized</STRONG><BR>
<CODE>Code</CODE><BR>
<SAMP>Sample Output</SAMP><BR>
<KBD>Keyboard Text</KBD><BR>
<DFN>Definition</DFN><BR>
<VAR>Variable</VAR><BR>
<CITE>Citation</CITE><BR>
<EM><CODE>Emphasized
Code</CODE></EM><BR>
<FONT COLOR="GRAY"><CITE>Gray
Citation</CITE></FONT><BR>
<ACRONYM TITLE="Java Development
Kit">JDK Acronym</ACRONYM>

02/08/14
Fonts
<FONT COLOR="red" SIZE="2" FACE="Times Roman">
This is the text of line one </FONT>
<FONT COLOR="green" SIZE="4" FACE="Arial">
Line two contains this text </FONT>
<FONT COLOR="blue" SIZE="6" FACE="Courier"
The third line has this additional text </FONT>

02/08/14
Unordered (Bulleted) Lists
An ordered list:

An unordered list:

1.The first list item

•List item

2.The second list item

•List item

3.The third list item

•List item

<ol>

<ul>

<li>lIST1</li>

<li>list1</li>

<li>LIST2</li>

<li>lIST2</li>

</ol>

</ul>

02/08/14
Unordered (Bulleted) Lists

<UL TYPE="disc">
<LI> One </LI>
<LI> Two </LI>
<UL TYPE="circle">
<LI> Three </LI>
<LI> Four </LI>
<UL TYPE="square">
<LI> Five </LI>
<LI> Six </LI>
</UL>
</UL>
</UL>

<ul type="circle" type="disc" type="square">
02/08/14
Ordered (Numbered) Lists
<OL TYPE="1">
<LI> Item one </LI>
<LI> Item two </LI>
<OL TYPE="I" >
<LI> Sublist item one </LI>
<LI> Sublist item two </LI>
<OL TYPE="i">
<LI> Sub-sublist item one </LI>
<LI> Sub-sublist item two </LI>
</OL>
</OL>
</OL>
<ol type="A" type="1" type="a" type="i" type="I">

02/08/14
HTML Description Lists
A description list is a list of terms/names, with a description of each
term/name.
The <dl> tag defines a description list.
The <dl> tag is used in conjunction with <dt> (defines terms/names) and
<dd> (describes each term/name):

<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>

Coffee
- black hot drink
Milk
- white cold drink

02/08/14
Hyperlinks

02/08/14
<A> Anchors (Hyper Links)

Link to an absolute URL:

If you get spam, contact <A HREF="htttp:www.microsoft.com">
Microsoft </A> to report the problem.
Link to a relative URL:
See these <A HREF="#references"> references </A>
concerning our fine products.
Link to a section within a URL:
Amazon provided a <A HREF="www.amazon.com/#reference">
reference for our company. </A>
<H2> <A NAME="#references"> Our References </A> </H2>

02/08/14
Hyperlinks
<BODY>
<H3>Welcome to <A HREF="http://www.cs.virginia.edu">
<STRONG>Computer Graphics</STRONG></A>
at the <A HREF="www.gai.edu">Graphics Arts Instute.</A>
</H3>
</BODY>

02/08/14
Images
SRC is required
WIDTH, HEIGHT may be in units of pixels or percentage of

page or frame
WIDTH="357"
HEIGHT="50%"

Images scale to fit the space allowed

02/08/14
Images
Align=position

Image/Text Placement

Left

Image on left edge; text flows to right of image

Right

Image on right edge; text flows to left

Top

Image is left; words align with top of image

Bottom

Image is left; words align with bottom of image

Middle

Words align with middle of image

02/08/14
Images
<BODY>
<img src="dolphin.jpg" align="left" width="150" height="150" alt="dolphin
jump!">
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
This is a very cute dolphin on the left!<br>
You can see text wrap around it<br>
</BODY>
</HTML>
02/08/14
02/08/14

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

HTML all tags .........its to much helpful for beginners
HTML all tags .........its to much helpful for beginners HTML all tags .........its to much helpful for beginners
HTML all tags .........its to much helpful for beginners
 
Html5 structure tags
Html5 structure tagsHtml5 structure tags
Html5 structure tags
 
HTML5- Create divisions in a web page
HTML5- Create divisions in a web pageHTML5- Create divisions in a web page
HTML5- Create divisions in a web page
 
HTML5 - My First Webpage
HTML5 - My First Webpage HTML5 - My First Webpage
HTML5 - My First Webpage
 
CSS
CSSCSS
CSS
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPage
 
HTML Lesson 1
HTML Lesson 1HTML Lesson 1
HTML Lesson 1
 
Creating a webpage in html
Creating a webpage in htmlCreating a webpage in html
Creating a webpage in html
 
Introduction To HTML
Introduction To HTMLIntroduction To HTML
Introduction To HTML
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Aryan kumar
Aryan kumarAryan kumar
Aryan kumar
 
Findability Bliss Through Web Standards
Findability Bliss Through Web StandardsFindability Bliss Through Web Standards
Findability Bliss Through Web Standards
 
Block2 Session2 Presentation
Block2 Session2 PresentationBlock2 Session2 Presentation
Block2 Session2 Presentation
 
HTML Lesson 2
HTML Lesson 2HTML Lesson 2
HTML Lesson 2
 
Creating Web Sites with HTML and CSS
Creating Web Sites with HTML and CSSCreating Web Sites with HTML and CSS
Creating Web Sites with HTML and CSS
 
Presentation html
Presentation   htmlPresentation   html
Presentation html
 
HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
Css
CssCss
Css
 
Learning HTML
Learning HTMLLearning HTML
Learning HTML
 

Destacado

Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSI
Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSIHar 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSI
Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSIPSI Conversion
 
Wave Group - Corporate Brochure
Wave Group - Corporate BrochureWave Group - Corporate Brochure
Wave Group - Corporate BrochureWaveGroup
 
Ransomware History and Monitoring Tips
Ransomware History and Monitoring TipsRansomware History and Monitoring Tips
Ransomware History and Monitoring TipsNetFort
 
Irfan view effects by jegor
Irfan view effects by jegorIrfan view effects by jegor
Irfan view effects by jegorJegor Pronkin
 
Tocciel
ToccielTocciel
ToccielPBrey
 
Massiveconnect2
Massiveconnect2Massiveconnect2
Massiveconnect2Fmassive
 
Introduction to indigokids
Introduction to indigokidsIntroduction to indigokids
Introduction to indigokidsIndigo Kids
 
Clave and the Caribbean rhythms
Clave and the Caribbean rhythmsClave and the Caribbean rhythms
Clave and the Caribbean rhythmsStefan Walcott
 
гиа 21.10.2015
гиа 21.10.2015гиа 21.10.2015
гиа 21.10.2015marina423
 
Gimnazia №67
Gimnazia №67 Gimnazia №67
Gimnazia №67 marina423
 
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_final
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_finalKarate1 pl template_bulletin_2014 karate one i̇stanbul open2014_final
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_finalMiguel Nacarino Karateyalgomas
 
Har 1016 LS1 DBW Wiring Harness Manual and Instructions
Har 1016 LS1 DBW Wiring Harness Manual and Instructions Har 1016 LS1 DBW Wiring Harness Manual and Instructions
Har 1016 LS1 DBW Wiring Harness Manual and Instructions PSI Conversion
 
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка»
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка» Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка»
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка» metodist4560
 

Destacado (20)

Peea pensadores de cabecera
Peea pensadores de cabeceraPeea pensadores de cabecera
Peea pensadores de cabecera
 
Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSI
Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSIHar 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSI
Har 1019 Vortec Swap Wiring Harness Instructions - EFI Conversion from PSI
 
B c f section 7
B c f section 7B c f section 7
B c f section 7
 
Google docs login
Google docs loginGoogle docs login
Google docs login
 
Wave Group - Corporate Brochure
Wave Group - Corporate BrochureWave Group - Corporate Brochure
Wave Group - Corporate Brochure
 
Ransomware History and Monitoring Tips
Ransomware History and Monitoring TipsRansomware History and Monitoring Tips
Ransomware History and Monitoring Tips
 
Irfan view effects by jegor
Irfan view effects by jegorIrfan view effects by jegor
Irfan view effects by jegor
 
Tocciel
ToccielTocciel
Tocciel
 
Irfan view effects
Irfan view effectsIrfan view effects
Irfan view effects
 
Coolidge dam jan05 casehis f
Coolidge dam jan05 casehis fCoolidge dam jan05 casehis f
Coolidge dam jan05 casehis f
 
Massiveconnect2
Massiveconnect2Massiveconnect2
Massiveconnect2
 
Fuzzy adaptive GSA
Fuzzy adaptive GSAFuzzy adaptive GSA
Fuzzy adaptive GSA
 
Ftd6
Ftd6Ftd6
Ftd6
 
Introduction to indigokids
Introduction to indigokidsIntroduction to indigokids
Introduction to indigokids
 
Clave and the Caribbean rhythms
Clave and the Caribbean rhythmsClave and the Caribbean rhythms
Clave and the Caribbean rhythms
 
гиа 21.10.2015
гиа 21.10.2015гиа 21.10.2015
гиа 21.10.2015
 
Gimnazia №67
Gimnazia №67 Gimnazia №67
Gimnazia №67
 
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_final
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_finalKarate1 pl template_bulletin_2014 karate one i̇stanbul open2014_final
Karate1 pl template_bulletin_2014 karate one i̇stanbul open2014_final
 
Har 1016 LS1 DBW Wiring Harness Manual and Instructions
Har 1016 LS1 DBW Wiring Harness Manual and Instructions Har 1016 LS1 DBW Wiring Harness Manual and Instructions
Har 1016 LS1 DBW Wiring Harness Manual and Instructions
 
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка»
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка» Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка»
Игра «Умники и умницы» по сказке Л.И.Куликова «Золотая бабочка»
 

Similar a Html class-02

Similar a Html class-02 (20)

HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
 
Lesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTMLLesson 2: Getting To Know HTML
Lesson 2: Getting To Know HTML
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
 
1.1 html lec 1
1.1 html lec 11.1 html lec 1
1.1 html lec 1
 
Wdf 222chp iii vi
Wdf 222chp iii viWdf 222chp iii vi
Wdf 222chp iii vi
 
HTML BY JODY C SALAS
HTML BY JODY C SALAS HTML BY JODY C SALAS
HTML BY JODY C SALAS
 
Html2
Html2Html2
Html2
 
Html presentation
Html presentationHtml presentation
Html presentation
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Html cia
Html ciaHtml cia
Html cia
 
Intodcution to Html
Intodcution to HtmlIntodcution to Html
Intodcution to Html
 
Html ppt
Html pptHtml ppt
Html ppt
 
Html
HtmlHtml
Html
 
Computer application html
Computer application htmlComputer application html
Computer application html
 
Learn HTML Easier
Learn HTML EasierLearn HTML Easier
Learn HTML Easier
 
HTML FOR BEGINNERS AND FOR PRACTICE .pdf
HTML FOR BEGINNERS AND FOR PRACTICE .pdfHTML FOR BEGINNERS AND FOR PRACTICE .pdf
HTML FOR BEGINNERS AND FOR PRACTICE .pdf
 
#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]#3 HTML & CSS [know-how]
#3 HTML & CSS [know-how]
 

Más de Md Ali Hossain (20)

Job environment (for new employee)
Job  environment (for new employee) Job  environment (for new employee)
Job environment (for new employee)
 
Web offset presses
Web offset pressesWeb offset presses
Web offset presses
 
Modern printing technologies
Modern printing technologiesModern printing technologies
Modern printing technologies
 
Screen printing
Screen printingScreen printing
Screen printing
 
Color
ColorColor
Color
 
Flexography
FlexographyFlexography
Flexography
 
Offset printing platon press
Offset printing platon pressOffset printing platon press
Offset printing platon press
 
Flexographic printing 1(9551)
Flexographic printing 1(9551)Flexographic printing 1(9551)
Flexographic printing 1(9551)
 
Press mentainense(9553)
Press mentainense(9553)Press mentainense(9553)
Press mentainense(9553)
 
Flexographic printing 1(9551)
Flexographic printing 1(9551)Flexographic printing 1(9551)
Flexographic printing 1(9551)
 
Special printing
Special printingSpecial printing
Special printing
 
142
142142
142
 
Web authoring design-basics
Web authoring design-basicsWeb authoring design-basics
Web authoring design-basics
 
Site designer
Site designerSite designer
Site designer
 
Webdesign
WebdesignWebdesign
Webdesign
 
Httml flash
Httml flashHttml flash
Httml flash
 
Html class-07
Html class-07Html class-07
Html class-07
 
Html class-04
Html class-04Html class-04
Html class-04
 
Css class-01
Css class-01Css class-01
Css class-01
 
Html class-01
Html class-01Html class-01
Html class-01
 

Último

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 

Último (20)

A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 

Html class-02

  • 1. Md. Ali Hosssain. Web Designer. Jr. Instructor, Graphic Arts Innstitute. Email:Students.gai@gmail.com Phone:01731402303 02/08/14
  • 2. HTML Elements HTML Element Syntax • An HTML element starts with a start tag / opening tag • An HTML element ends with an end tag / closing tag • The element content is everything between the start and the end tag • Some HTML elements have empty content • Empty elements are closed in the start tag • Most HTML elements can have attributes Element • The <Head> element: • The <body> element: • The<head> element: • The <Title> element: • The <p> element: • The <h1> element: 02/08/14
  • 4. HTML Attributes •HTML elements can have attributes •Attributes provide additional information about an element •Attributes are always specified in the start tag •Attributes come in name/value pairs like: name="value" 02/08/14
  • 6. HTML BODY Element <BODY attributename="attributevalue"> Deprecated attributes (but still used) BACKGROUND=“Sunset.jpg” (can be tiled) BGCOLOR=color TEXT=“color” LINK=“color” (unvisited links) VLINK=“color” (visited links) ALINK=color (when selected) <body alink="#336666" background="test.jpg" bgcolor="red" link="#00FF00" text="#FF0000" vlink="#00CC99"> 02/08/14
  • 7. Colors Values for BGCOLOR and COLOR many are predefined (red, blue, green, ...) all colors can be specified as a six character hexadecimal value: RRGGBB FF0000 – red 888888 – gray 004400 – dark green FFFF00 – yellow 000000-Black 02/08/14
  • 9. <PRE> Preformatted Text Special Characters <PRE> if (a < b) { a++; b = c * d; } else { a--; b = (b-1)/2; } </PRE> Character Use < &lt; > &gt; & &amp; " &quot; Space &nbsp; 02/08/14
  • 10. <address> Written by <a href="mailto:webmaster@example.com">Kamrul</a>.<br> Visit us at:<br> Example.com<br> Dhanmondi Dhaka<br> Bangladesh </address> <h1>Graphics arts Institute</h1> <blockquote > Graphics Arts institute is the largest arts institute In Bangladesh </blockquote> 02/08/14
  • 11. Physical Character Styles <H1>Physical Character Styles</H1> <B>Bold</B><BR> <I>Italic</I><BR> <TT>Teletype (Monospaced)</TT><BR> <U>Underlined</U><BR> Subscripts: f<SUB>0</SUB> + f<SUB>1</SUB><BR> Superscripts: x<SUP>2</SUP> + y<SUP>2</SUP><BR> <SMALL>Smaller</SMALL><BR> <BIG>Bigger</BIG><BR> <STRIKE>Strike Through</STRIKE><BR> <B><I>Bold Italic</I></B><BR> <BIG><TT>Big Monospaced</TT></BIG><BR> <SMALL><I>Small Italic</I></SMALL><BR> <FONT COLOR="GRAY">Gray</FONT><BR> <DEL>Delete</DEL><BR> <INS>Insert</INS><BR> 02/08/14
  • 12. <H1>Logical Character Styles Logical Character Styles</H1> <EM>Emphasized</EM><BR> <STRONG>Strongly Emphasized</STRONG><BR> <CODE>Code</CODE><BR> <SAMP>Sample Output</SAMP><BR> <KBD>Keyboard Text</KBD><BR> <DFN>Definition</DFN><BR> <VAR>Variable</VAR><BR> <CITE>Citation</CITE><BR> <EM><CODE>Emphasized Code</CODE></EM><BR> <FONT COLOR="GRAY"><CITE>Gray Citation</CITE></FONT><BR> <ACRONYM TITLE="Java Development Kit">JDK Acronym</ACRONYM> 02/08/14
  • 13. Fonts <FONT COLOR="red" SIZE="2" FACE="Times Roman"> This is the text of line one </FONT> <FONT COLOR="green" SIZE="4" FACE="Arial"> Line two contains this text </FONT> <FONT COLOR="blue" SIZE="6" FACE="Courier" The third line has this additional text </FONT> 02/08/14
  • 14. Unordered (Bulleted) Lists An ordered list: An unordered list: 1.The first list item •List item 2.The second list item •List item 3.The third list item •List item <ol> <ul> <li>lIST1</li> <li>list1</li> <li>LIST2</li> <li>lIST2</li> </ol> </ul> 02/08/14
  • 15. Unordered (Bulleted) Lists <UL TYPE="disc"> <LI> One </LI> <LI> Two </LI> <UL TYPE="circle"> <LI> Three </LI> <LI> Four </LI> <UL TYPE="square"> <LI> Five </LI> <LI> Six </LI> </UL> </UL> </UL> <ul type="circle" type="disc" type="square"> 02/08/14
  • 16. Ordered (Numbered) Lists <OL TYPE="1"> <LI> Item one </LI> <LI> Item two </LI> <OL TYPE="I" > <LI> Sublist item one </LI> <LI> Sublist item two </LI> <OL TYPE="i"> <LI> Sub-sublist item one </LI> <LI> Sub-sublist item two </LI> </OL> </OL> </OL> <ol type="A" type="1" type="a" type="i" type="I"> 02/08/14
  • 17. HTML Description Lists A description list is a list of terms/names, with a description of each term/name. The <dl> tag defines a description list. The <dl> tag is used in conjunction with <dt> (defines terms/names) and <dd> (describes each term/name): <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> Coffee - black hot drink Milk - white cold drink 02/08/14
  • 19. <A> Anchors (Hyper Links) Link to an absolute URL: If you get spam, contact <A HREF="htttp:www.microsoft.com"> Microsoft </A> to report the problem. Link to a relative URL: See these <A HREF="#references"> references </A> concerning our fine products. Link to a section within a URL: Amazon provided a <A HREF="www.amazon.com/#reference"> reference for our company. </A> <H2> <A NAME="#references"> Our References </A> </H2> 02/08/14
  • 20. Hyperlinks <BODY> <H3>Welcome to <A HREF="http://www.cs.virginia.edu"> <STRONG>Computer Graphics</STRONG></A> at the <A HREF="www.gai.edu">Graphics Arts Instute.</A> </H3> </BODY> 02/08/14
  • 21. Images SRC is required WIDTH, HEIGHT may be in units of pixels or percentage of page or frame WIDTH="357" HEIGHT="50%" Images scale to fit the space allowed 02/08/14
  • 22. Images Align=position Image/Text Placement Left Image on left edge; text flows to right of image Right Image on right edge; text flows to left Top Image is left; words align with top of image Bottom Image is left; words align with bottom of image Middle Words align with middle of image 02/08/14
  • 23. Images <BODY> <img src="dolphin.jpg" align="left" width="150" height="150" alt="dolphin jump!"> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> This is a very cute dolphin on the left!<br> You can see text wrap around it<br> </BODY> </HTML> 02/08/14