1 / 10

HTML Tags

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>

moniquer
Download Presentation

HTML Tags

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML Tags

  2. 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.

  3. What are the basic tag? • <html> </html> • <head> </head> • <title> </title> • <Body> </body> • <p> • <br>

  4. <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

  5. What does that look like?

  6. Did you notice anything? • Regular text • No break when an ENTER was keyed • Nothing exciting about page. • Formatting is needed

  7. 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>

  8. Here’s what those did…

  9. What changed? • Background color • Breaks in text • Horizontal rules • All with just a few keystrokes

  10. What can you create?

More Related