Html&css pp

Post on 21-Jun-2015

42 views 2 download

description

The basics of using HTML Terms Include: Element, creating a hyperlink, and creating lists. Content Content content

Transcript of 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

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 HYPERLINK

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

Visit Google!

LISTS <ul>

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

Coffee Tea Milk

HTML ELEMENTSWritten with a start and ending tag

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

Content goes in the middle

<!DOCTYPE html> <html> <head> <title>This is a title</title> </head> <body> <p>Hello world!</p> </body> </html>