generated from codetracker-learning/LAB-pet-adoption
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (67 loc) · 2.93 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pet Adoption</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<link rel="shortcut icon" href="#">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Preahvihear&display=swap" rel="stylesheet">
<style>
input[type=text] {
background-color: antiquewhite;
}
input[type=text]:focus{
background-color: antiquewhite; /* oranges! yey */
}
input[type=url] {
background-color: antiquewhite;
}
input[type=url]:focus {
background-color: antiquewhite;
}
</style>
</head>
<header>ADOPT A PET OR FAIL NSS</header>
<div class="buttonz">
<div><button type="button" class="btn btn-outline-warning meow"></button></div>
<div><button type="button" class="btn btn-outline-warning woof"></button></div>
<div><button type="button" class="btn btn-outline-warning roar"></button></div>
<div><button type="button" class="btn btn-outline-warning allPets"></button></div>
<a href="#strays"><button type="button" class="btn btn-outline-warning rescue"></button></a>
</div>
<div id="root"></div>
<form id="strays" class = "add-pet">
<div class = "ap-header">Rescued an Animal?</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="name" placeholder="Name" required>
<label for="floatingInput">Pet Name</label>
</div>
<div class="form-floating mb-3">
<input type="url" class="form-control" id="imageUrl" placeholder="Pet Image" required>
<label for="floatingInput">Image</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="color" placeholder="Pet Color" required>
<label for="floatingInput">Pet Color</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="specialSkill" placeholder="Special Pet Skill" required>
<label for="floatingInput">Special Pet Skill</label>
</div>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="type" placeholder="Pet Type" required>
<label for="floatingInput">Pet Type</label>
</div>
<button type="submit" class="btn btn-success d-grid gap-2 col-8 mx-auto rescue-me" id="form-submit">Let Us Find Them a Home!</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-7VPbUDkoPSGFnVtYi0QogXtr74QeVeeIs99Qfg5YCF+TidwNdjvaKZX19NZ/e6oz" crossorigin="anonymous"></script>
<script src="main.js"></script>
</body>
</html>