Html&css pp

9

description

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

Transcript of Html&css pp

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
Page 4: Html&css pp
Page 5: 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 6: Html&css pp

CREATING A TEXT HYPERLINK

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

Visit Google!

Page 7: Html&css pp

LISTS <ul>

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

Coffee Tea Milk

Page 8: 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

Page 9: Html&css pp

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