Below is the code for the splash page of my website. It's very much a practice space as I nail down what I want it to look like and how I want it to function. I still need to do the FTP stuff so I can get it hosted online somewhere.
<html>
<head><title>Math with Mr. Luke</title></head>
<style>
body {
background-color: PowderBlue;
color: #fff;
}
</style>
<body>
<h1>Mr. Luke</h1>
<h2><i>The more I understand, the less I have to memorize.</i></h2>
<hr />
<p>
<img src="images/Brandon1.jpg" alt=Mr. Luke width="500" />
</p>
Links to other parts of the site:
<ul>
<li><a href="assignments.html">Assignments</a></li>
<li><a href="grades.html">Grades</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="calendar.html">Calendar</a></li>
</ul>
<p>This is a handy dandy little paragraph that might just tell more about Mr. Luke.
Or, that might be a separate page. Who can say?
</p>
</table>
<h4>Test Scores:</h4>
<table border="1" cellpadding="5" cellspacing="5">
<tr>
<th>Algebra 2</th>
<th>Calculus BC</th>
</tr>
<tr>
<td>85</td>
<td>92</td>
</tr>
</table>
<!--The table above will be on a separate page at some point.>
</body>
</html>
<html>
<head><title>Math with Mr. Luke</title></head>
<style>
body {
background-color: PowderBlue;
color: #fff;
}
</style>
<body>
<h1>Mr. Luke</h1>
<h2><i>The more I understand, the less I have to memorize.</i></h2>
<hr />
<p>
<img src="images/Brandon1.jpg" alt=Mr. Luke width="500" />
</p>
Links to other parts of the site:
<ul>
<li><a href="assignments.html">Assignments</a></li>
<li><a href="grades.html">Grades</a></li>
<li><a href="resources.html">Resources</a></li>
<li><a href="calendar.html">Calendar</a></li>
</ul>
<p>This is a handy dandy little paragraph that might just tell more about Mr. Luke.
Or, that might be a separate page. Who can say?
</p>
</table>
<h4>Test Scores:</h4>
<table border="1" cellpadding="5" cellspacing="5">
<tr>
<th>Algebra 2</th>
<th>Calculus BC</th>
</tr>
<tr>
<td>85</td>
<td>92</td>
</tr>
</table>
<!--The table above will be on a separate page at some point.>
</body>
</html>
Comments
Post a Comment