140 likes | 290 Views
HTML Tags. How do I start to use HTML?. Tags Example <a href= http://www.google.com > This would be the tag to link a page that a student creates to the Google site. What are the basic tag?. <html> </html> <head> </head> <title> </title> <Body> </body> <p> <br>. <html>
E N D
How do I start to use HTML? • Tags • Example <a href=http://www.google.com> • This would be the tag to link a page that a student creates to the Google site.
What are the basic tag? • <html> </html> • <head> </head> • <title> </title> • <Body> </body> • <p> • <br>
<html> <head><title>First Page</title></head> <body> Hello! This is my first page of code. I can't believe I'm on my way to being a webmaster. This is so great!!! </body> </html> Simple page of Code
Did you notice anything? • Regular text • No break when an ENTER was keyed • Nothing exciting about page. • Formatting is needed
Look at some additions (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>
What changed? • Background color • Breaks in text • Horizontal rules • All with just a few keystrokes