creating web pages using…more html code! my first \ web page

7
CREATING WEB PAGES Using…More HTML code! My First \ Web Page

Upload: nora-newman

Post on 02-Jan-2016

216 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

CREATING WEB PAGES CREATING WEB PAGES

Using…More HTML code!

My First \ Web Page

Page 2: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

More tags - formattingMore tags - formatting

<h #>…</h#> Headline size #1-6

<p>…</p> Paragraph

You can align a headline or paragraph

(center, right or left)

ex : <p align= “center”> blah blah blah </p>

<b>...</b> Bold text

<i>...</i> Italic text

<u>...</u>   Underlined text

Page 3: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

Making listsMaking lists

Creating lists with HTML:<ol></ol> ordered/numbered list<ul></ul> bulleted list

Each item in the list must start with<li> no closing tag

Ex: <ol> <li>bug <li>bat <li>bike </ol>

Page 4: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

Inserting graphicsInserting graphics

One-sided tag …no closing tagInserting an image saved in a folder or other file Make sure image is saved in same folder as text editor

<img src=filename.fileextension>ex: <img src=dog.jpg>

<p> <img src=dog.jpg> </p>

Page 5: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

Inserting graphicsInserting graphics

Inserting an image from a website or other locationExample:

<img src=http://files.dogster.com/images/dogster/daily_tips/modal/modal-tips-dog.png width=“###” height=“###”>

Page 6: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

HyperlinksHyperlinks

<a></a>hyperlinkex: <a href=“http://www.google.com” > GOOGLE</a>

Page 7: CREATING WEB PAGES Using…More HTML code! My First \ Web Page

Creating Web PagesCreating Web Pages

Don’t worry…

It’s not as hard as it sounds.

Quiz 1 and assignment 1