27 lines
534 B
HTML
27 lines
534 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||
|
<link rel="stylesheet" href="/css/pure-min.css">
|
||
|
<title>the Book Store</title>
|
||
|
<style>
|
||
|
.main {
|
||
|
padding: 2em;
|
||
|
color: black;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="main">
|
||
|
<h1>the Test Site</h1>
|
||
|
|
||
|
Welcome to this Fantastic Web Page.
|
||
|
|
||
|
<p> The following services are available today:
|
||
|
|
||
|
<ul>
|
||
|
<li> <a href = "http://localhost:8080/Survey"> THE SURVEY</a>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|