-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.29 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Moody Kittens | CodeWorks</title>
<link rel="shortcut icon" href="moody-logo.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css?family=Catamaran&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="bg-dark d-flex align-items-center p-1 space-between">
<img src="moody-logo.png" height="60" alt="Moody Kittens">
<form class="" onsubmit="addKitten(event)">
<div class="d-flex">
<input placeholder="Enter name of kitten" type="text" name="name" />
<button class="btn-special" type="submit">
/ᐠ。ꞈ。ᐟ\
</button>
</div>
</form>
</header>
<main class="container">
<!-- I took away the welcome sign-->
<div class="p-2">
<div class="d-flex align-items-center flex-wrap" id="kittens-list">
</div>
</main>
<footer class="card bg-dark text-light p-2 d-flex align-items-center justify-content-center">
<small>Created with <span style="color: var(--primary)">♥</span> by CodeWorks</small>
</footer>
<script src="app.js"></script>
</body>
</html>