-
Notifications
You must be signed in to change notification settings - Fork 0
/
practical6.html
65 lines (60 loc) · 2.05 KB
/
practical6.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
<!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" />
<link rel="stylesheet" href="prac6.css" />
<title>pet id</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="practical6.js"></script>
</head>
<body
background="https://images.pexels.com/photos/2194261/pexels-photo-2194261.jpeg?auto=compress&cs=tinysrgb&w=1600"
>
<div>
<div id="parent">
<h1 id="header">PET FORM</h1>
<form action="">
<label for="pet-name">PET NAME : </label>
<input
type="text"
name="pet-name"
placeholder="Enter pet name"
id="pet_name"
/>
<br /><br />
<label for="age">AGE : </label>
<input type="number" name="age" placeholder="Enter age" id="age" />
<br /><br />
<label for="weight">WEIGHT : </label>
<input
type="number"
name="weight"
placeholder="Enter weight"
id="weight"
/>
<br /><br />
<label for="pet-type">SELECT PET TYPE : </label>
<select name="pet-type" id="selector">
<option value="NULL">SELECT</option>
<option value="GERMAN-SHEAPERD">GERMAN-SHEAPERD</option>
<option value="GOLDEN-RETRIEVER">GOLDEN-RETRIEVER</option>
<option value="HUSKY">HUSKY</option>
<option value="BULLDOG">BULLDOG</option>
</select>
<br /><br />
<label for="interest">PET INTEREST : </label>
<input
type="text"
name="interest"
placeholder="write something"
id="interest"
/>
<br /><br />
<input type="submit" value="submit" id="submit" />
</form>
</div>
</div>
</body>
</html>