Initial commit

This commit is contained in:
Dessa Simpson 2020-06-24 21:34:53 +00:00
commit ce518aeeb5
16 changed files with 1755 additions and 0 deletions

12
public/index.html Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<link rel=stylesheet href=style.css />
<title>Test Main Page</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha384-tsQFqpEReu7ZLhBV2VZlAu7zcOV+rXbYlF2cqB8txI/8aZajjp4Bqd+V6D5IgvKT" crossorigin="anonymous"></script>
</head>
<body>
<h1>Test Main Page</h1>
</body>
</html>

5
public/style.css Normal file
View file

@ -0,0 +1,5 @@
body {
padding: 0.5em 1em 2em 1em;
text-align: center;
font-family: sans-serif;
}