New Tags

We are going to create an About Me page today!

New Tags

  • Image - Add image to webpage
  • Paragraph - add blocks of text to webpage
  • Line Break - add newline (like the enter key on keyboard)
  • BgColor - background color

Image Tag

  • code template
  • <img src="filename.xxx" width"250" alt="Pops Up When Mouse Hovers Over Photo">
  • example:

<img src="me.jpg" width"250" alt="Chuck Konkol">

Paragraph

  • code template
  • <p>Text for paragraph</p>
  • example:

<p>My Name is Chuck Konkol</p>

Line Break

  • code template
  • <br>
  • example:

<img src="me.jpg" width"250" alt="Chuck Konkol"> <br>

<p>Chuck Konkol</p>

Bgcolor

  • code template/example
  • <body bgcolor="lightblue">

Other colors: lightgreen, lightyellow, lightgray, lightbrown, aqua, etc.

See https://en.wikipedia.org/wiki/Web_colors#X11_color_names

Complete and Continue