-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
27 lines (27 loc) · 1012 Bytes
/
Index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>K9 Fitness App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css"
/>
</head>
<div class="page-outline">
<body>
<div class="header">
<img src="images/Dog1.png" id="dog1">
<h1>K9 Fitness App</h1>
<img src="images/Dog2.png" id="dog2">
<section id="messages-container"></section>
<form action="">
<textarea name="user-message" id="message-box" rows=10 cols=80></textarea>
<button type="submit">Submit message</button>
</form>
</div>
</body>
</div>
<script src="node_modules/pouchdb/dist/pouchdb.min.js"></script>
<script src="app.js"></script>
</html>