mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-01-22 09:19:55 +00:00
unified footer stuff
This commit is contained in:
parent
4a885a7730
commit
b0d43414ce
@ -1,13 +1,14 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>About</title>
|
<title>Wordsearch Builder: About</title>
|
||||||
<link rel="stylesheet" type="text/css" href="base.css" />
|
<link rel="stylesheet" type="text/css" href="base.css" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<h1><a href="index.jsp">Wordsearch Builder</a>: About</h1>
|
<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>
|
<ul>
|
||||||
<li>Code available on <a href="https://github.com/fooflington/wordsearch">GitHub</a>.</li>
|
<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>Dynamic resizing of grid</li>
|
||||||
<li>Hide word list</li>
|
<li>Hide word list</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
Thanks for trying it out :-)
|
||||||
|
|
||||||
|
<%@include file="/WEB-INF/jspf/footer.jspf" %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -20,7 +20,7 @@ table#grid td {
|
|||||||
|
|
||||||
#wrapper {
|
#wrapper {
|
||||||
width: 80%;
|
width: 80%;
|
||||||
margin: 0 auto;
|
margin: 0 auto 60px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wordsearch {
|
#wordsearch {
|
||||||
@ -33,7 +33,10 @@ table#grid td {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#footer {
|
#footer {
|
||||||
float: bottom;
|
position:absolute;
|
||||||
|
bottom:0;
|
||||||
|
width:100%;
|
||||||
|
height:60px; /* Height of the footer */
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only print {
|
@media only print {
|
||||||
|
@ -69,5 +69,8 @@
|
|||||||
</ul>
|
</ul>
|
||||||
</div> <!-- end words -->
|
</div> <!-- end words -->
|
||||||
</div> <!-- end wrapper -->
|
</div> <!-- end wrapper -->
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<%@include file="/WEB-INF/jspf/footer.jspf" %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Wordsearch builder</title>
|
<title>Wordsearch Builder</title>
|
||||||
<link rel="stylesheet" type="text/css" href="base.css" />
|
<link rel="stylesheet" type="text/css" href="base.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Wordsearch builder</h1>
|
<h1>Wordsearch Builder</h1>
|
||||||
<a href="about.html">About</a>
|
<a href="about.jsp">About</a>
|
||||||
|
|
||||||
<h2>Words</h2>
|
<h2>Words</h2>
|
||||||
<form action="build.jsp" method="post">
|
<form action="build.jsp" method="post">
|
||||||
@ -29,5 +29,6 @@ Dining Room
|
|||||||
<input type="submit" value="Build!" />
|
<input type="submit" value="Build!" />
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<%@include file="/WEB-INF/jspf/footer.jspf" %>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user