Html&css pp

Preview:

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

Citation preview

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

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>

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

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.

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>

LISTS <ul>

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

Coffee Tea Milk