html&css pp

9

Upload: jeckman1360

Post on 21-Jun-2015

70 views

Category:

Technology


1 download

DESCRIPTION

The basics of using HTML Terms Include: Element, creating a hyperlink with text and a picture, and creating lists. Content Paragraph Content Font Size Start List content Listen Bullets

TRANSCRIPT

Page 1: Html&css pp
Page 2: Html&css pp

WHAT IS HTML?Hypertext Markup LanguageA standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide Web pages.

-The skeleton of any website

Page 3: Html&css pp

HTML ELEMENTSWritten with a start and ending tag

Ex: Beginning a paragraph<p>beginning tag </p> ending tag

Content goes in the middle<p>Content</p>

Page 4: Html&css pp

<!DOCTYPE html> <html> <head> <title>Adam</title> </head> <body> <p>Hello world!</p> </body> </html>

Page 5: Html&css pp
Page 6: Html&css pp
Page 7: Html&css pp

SO HOW DOES THIS ALL WORK?

You can create a website using most any text editor.

WYSIWYG- Adobe Dreamweaver & Blue Griffon

Pictures are referenced from a location on your computer or the Internet.

Page 8: Html&css pp

CREATING A TEXT/PICTURE HYPERLINK

<a href=google.com>Visit Google!</a>Visit Google!

< img src=www.picture.com/pictureofapicture.j

pg />

<a href=google.com><img src=www.picture.com/pictureofapicture.jpg/></

a>

Page 9: Html&css pp

LISTS <ul>

  <li>Coffee</li>  <li>Tea</li>  <li>Milk</li></ul>

Coffee Tea Milk