Skyscraper
CS 1371 Lab 2 - HTML

index.html Template

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
	
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title> My Page Title </title>
<link rel="stylesheet" type="text/css" media="screen" href="myStyle.css" />

</head>
<body>

<div class="main">
  <div class="head">
	You could put some big text or a picture/logo-ish here. 
	Somewhere you need to include your gburdell3 or gtx999x.
  </div>
  <div class="photo">
    <img src="myphoto.jpg" alt="A Picture of Me" title="This was me yesterday" 
	width="100%" height="100%" />
  </div>
  <div class="content">
  <h3>About Me</h3>
  <p>
	Need a paragraph here. Blahhhhhhhhhhhhhhhhhh.
  </p>
  
  <h4>My Table</h4>
  <table>
    <tr>
	  <td>This is one cell. You'll need to read how to make more. 
	  Or guess correctly.</td>
	</tr>
  </table>
  
  <p>
   Maybe some links go here.<br />
   Need A clickable image link<br />
   Need a link that href="mailto:gburdell3@mail.gatech.edu" emails to you<br />
   Need a link to your mailform page<br />
  </p>
  <p>
  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam eget nibh. 
  Etiam gravida aliquet massa. Fusce vel lectus. Mauris leo. Duis et ante 
  eget mi aliquet elementum. In id turpis eu ante aliquam placerat. Ut 
  accumsan. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. 
  Nam vel justo vitae turpis accumsan imperdiet. Integer tempus metus nec 
  risus. Donec eget pede. Ut fermentum metus sit amet ante. Pellentesque 
  condimentum egestas dolor. Etiam eget ipsum. Integer consequat nisi a mi.
  </p>
  </div>
</div>

</body>
</html>