Html tags

10
HTML Tags HTML Tags

Transcript of Html tags

Page 1: Html tags

HTML TagsHTML Tags

Page 2: Html tags

How do I start to use How do I start to use HTML?HTML?

TagsTags Example <a href=Example <a href=

http://www.google.com>> This would be the tag to link a page This would be the tag to link a page

that a student creates to the Google that a student creates to the Google site.site.

Page 3: Html tags

What are the basic tag?What are the basic tag?

<html> </html><html> </html> <head> </head><head> </head> <title> </title><title> </title> <Body> </body><Body> </body> <p><p> <br><br>

Page 4: Html tags

Simple page of CodeSimple page of Code <html><html> <head><title>First <head><title>First

Page</title></head>Page</title></head> <body><body> Hello! This is my first page of code. I Hello! This is my first page of code. I

can't believe I'm on my way to being a can't believe I'm on my way to being a webmaster. This is so great!!!webmaster. This is so great!!!

</body></body> </html></html>

Page 5: Html tags

What does that look like?What does that look like?

Page 6: Html tags

Did you notice anything?Did you notice anything?

Regular textRegular text No break when an ENTER was No break when an ENTER was

keyedkeyed Nothing exciting about page.Nothing exciting about page. Formatting is neededFormatting is needed

Page 7: Html tags

Look at some additions Look at some additions (changes in Red)(changes in Red)

<html><head><title>First Page</title></head><body bgcolor="blue"><hr>Hello! This is my first page of code. I can't believe I'm on my way to

being a webmaster.<p>This is so great!!!<hr></body></html>

Page 8: Html tags

Here’s what those did…Here’s what those did…

Page 9: Html tags

What changed?What changed?

Background colorBackground color Breaks in textBreaks in text Horizontal rulesHorizontal rules All with just a few keystrokesAll with just a few keystrokes

Page 10: Html tags

What can you create?What can you create?