-
Notifications
You must be signed in to change notification settings - Fork 0
/
form2.html
96 lines (53 loc) · 2.53 KB
/
form2.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
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>PAW - Shelter and healthcare services </title>
<!-- google-font -->
<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=Montserrat:wght@100&family=Ubuntu:wght@300&display=swap"
rel="stylesheet">
<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=Montserrat:wght@900&display=swap" rel="stylesheet">
<!-- bootstrap links -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!-- font-awesome -->
<script src="https://kit.fontawesome.com/4fcb0e5e0a.js" crossorigin="anonymous"></script>
<!-- css-stylesheet -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container mt-5 ">
<h1>Dogs Information</h1>
<form class="row g-3">
<div class="form">
<div class="col-md-6">
<label for="firstName" class="form-label form-title"> Color of the Dog </label>
<input type="text" class="form-control" id="firstName" required>
</div>
<div class="col-md-6">
<label for="lastName" class="form-label form-title">Breed of the Dog </label>
<input type="text" class="form-control" id="lastName" required>
</div>
<div class="col-md-8">
<label for="emailInfo" class="form-label form-title">Age of the dog</label>
<input type="number" class="form-control" id="emailInfo" required>
</div>
<div class="col-md-4">
<label for="phoneNumber" class="form-label form-title">Health of th dog !</label>
<input type="text" class="form-control" id="phoneNumber" placeholder="Health Status">
</div>
<div class="col-md-12 my-4">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>