styling in html powerpoint how to style in html. styling in html styling tags can be added to html...

4
<html> <head> <title> Styling in HTML PowerPoint </title> </head> <body> How to style in HTML </body> </html>

Upload: bruno-matthews

Post on 04-Jan-2016

215 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be

<html><head><title>Styling in HTML PowerPoint</title></head><body>

How to style in HTML</body></html>

Page 2: Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be

Styling in HTML

• Styling tags can be added to HTML to place emphasis or add appeal– These tags must be closed

• <b> … bold• <i> … italics• <u> … underline• <p> … starts and ends paragraphs; creates 1 blank line

– These tags do not have to be closed• <br /> … line break• <hr /> … horizontal rule; creates a straight line across

the page

Page 3: Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be

Styling in HTML cont.

– Heading tags must be closed

• <h1> … Largest heading tag• <h2> … 2nd largest heading tag• <h3> … 3rd largest heading tag• <h4> … 4th largest heading tag• <h5> … 2nd smallest heading tag• <h6> … smallest heading tag

Page 4: Styling in HTML PowerPoint How to style in HTML. Styling in HTML Styling tags can be added to HTML to place emphasis or add appeal – These tags must be

Styling in HTML –REVIEW

• Code View:<b>My name is…</b><i>The Great Gatsby</i><u>See Spot Run</u><p>Earth</p><p>Mars</p>

<hr />Yellow<br /> Bird

<h1>About us</h1><h6>What to do now?</h6>

• Browser ViewMy name is…

The Great Gatsby

See Spot Run

Earth

Mars

YellowBird

About usWhat to do now?