forked from akshitagupta15june/PetMe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadopt.html
72 lines (63 loc) · 2.43 KB
/
adopt.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
<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">
<link rel="stylesheet" href="./reportstary.css">
<title>Adopt Me</title>
</head>
<body>
<nav class=" bg-gray-800 flex items-center justify-between md:h-16 md:px-2">
<div class=" nav-links md:w-3/5">
<ul class=" flex items-center justify-evenly text-white ">
<br>
<a class="hover:border-b-2 hover:border-solid hover:border-white" href="index.html"><b>Home</b></a>
</ul>
</div>
</nav>
<div class="container">
<header>
<h1 id="title">Adopt Your Favourite Pet</h1>
<p id="description">The details you provide with this form will be used to reach the nearest
authority/organization at the
location of the pet.</p>
</header>
<form id="survey-form" action="https://formspree.io/f/xayaokzl" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter your name" required />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" class="form-control" placeholder="Enter your email" required />
</div>
<div class="form-group">
<label for="address">
Address(street address,City, pincode)
<span class="hint">(optional)</span>
</label>
<input type="address" name="first address" id="first address" class="form-control"
placeholder="Enter your correct address (eg. Meenawati marg, Lucknow, 209087)" />
</div>
<div class="form-group">
<label for="landmark">
Landmark
<span class="hint">(optional)</span>
</label>
<input type="address" min="1" name="address" id="address" class="form-control"
placeholder="Enter the nearest landmark to identify the location." />
</div>
<div class="form-group">
<label for="landmark">
Contact Number
<span class="hint">(optional)</span>
</label>
<input type="tel" min="1" name="tel" id="tel" class="form-control" placeholder="+91 1023456789" />
</div>
<div class="form-group">
<button type="submit" id="submit" class="submit-button">Submit</button>
</div>
</form>
</div>
</body>
</html>