unified footer stuff

This commit is contained in:
foo 2016-12-22 07:52:15 +00:00
parent 4a885a7730
commit b0d43414ce
4 changed files with 19 additions and 7 deletions

View File

@ -1,13 +1,14 @@
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<title>Wordsearch Builder: About</title>
<link rel="stylesheet" type="text/css" href="base.css" />
</head>
<body>
<h1><a href="index.jsp">Wordsearch Builder</a>: About</h1>
Wordsearch Builder takes a list of words and places them on a grid in any direction allowing the to cross-over where possible then fills in the remaining empty spaces with semi-random letters.
<p>Wordsearch Builder takes a list of words and places them on a grid in any direction allowing the to cross-over where possible then fills in the remaining empty spaces with semi-random letters.</p>
<p>Please feel free to use the generated wordsearches for whatever you want including in school classrooms or for personal use.</p>
<ul>
<li>Code available on <a href="https://github.com/fooflington/wordsearch">GitHub</a>.</li>
@ -31,5 +32,9 @@
<li>Dynamic resizing of grid</li>
<li>Hide word list</li>
</ul>
Thanks for trying it out :-)
<%@include file="/WEB-INF/jspf/footer.jspf" %>
</body>
</html>

View File

@ -20,7 +20,7 @@ table#grid td {
#wrapper {
width: 80%;
margin: 0 auto;
margin: 0 auto 60px auto;
}
#wordsearch {
@ -33,7 +33,10 @@ table#grid td {
}
#footer {
float: bottom;
position:absolute;
bottom:0;
width:100%;
height:60px; /* Height of the footer */
}
@media only print {

View File

@ -69,5 +69,8 @@
</ul>
</div> <!-- end words -->
</div> <!-- end wrapper -->
<br />
<br />
<%@include file="/WEB-INF/jspf/footer.jspf" %>
</body>
</html>

View File

@ -1,12 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Wordsearch builder</title>
<title>Wordsearch Builder</title>
<link rel="stylesheet" type="text/css" href="base.css" />
</head>
<body>
<h1>Wordsearch builder</h1>
<a href="about.html">About</a>
<h1>Wordsearch Builder</h1>
<a href="about.jsp">About</a>
<h2>Words</h2>
<form action="build.jsp" method="post">
@ -29,5 +29,6 @@ Dining Room
<input type="submit" value="Build!" />
</form>
<%@include file="/WEB-INF/jspf/footer.jspf" %>
</body>
</html>