-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.CatPhotoApp.html
57 lines (53 loc) · 1.92 KB
/
1.CatPhotoApp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CatPhotoApp</title>
</head>
<body>
<h1>CatPhotoApp</h1>
<h2>1.Cat Photos</h2>
<hr>
<p>EveryOne Loves <a href="">Cute Cat</a> Online!</p>
<p>See more <a href="">Cat photos</a> on our gallery</p>
<a href=""><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSimtZyskdR3y0AtCiHyEebU1o7mZQFOA6F0Q&s"></a>
<hr>
<h2>2.Cat List</h2>
<hr>
<h3>Things cat like:
</h3>
<ul>
<li>Cat Nip</li>
<li>Lasers pointers</li>
<li>Lasgana</li>
<a href=""><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTGzsjXkw8qdig3EucYlEEnIyvxhFvE7eKDlA&s"></a>
<p>Cat Likes Lasgana most </p>
</ul>
<h3>Things Cat hates :</h3>
<ul>
<li>flea Treatment</li>
<li>Thunder Bolts </li>
<li>Others Cat's</li>
<a href=""> <img src="https://img.freepik.com/premium-photo/group-cats-black-cat-table_931553-51530.jpg"></a>
</ul>
<hr>
<h2>3.Cat Form</h2>
<hr>
<form action="www.RaghavJha.com">
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
</fieldset>
<fieldset>
<legend>What's your cat's personality?</legend>
<label><input id="i1" type="checkbox" name="perso" value="lazy" >lazy</label>
<label><input id="i2" type="checkbox" name="perso" value="Energetic">Energetic</label>
</fieldset>
<br>
<label><input id="id3" type="text" placeholder="Search Cat's by Its Breed"></label>
<button>Search</button>
</form>
</body>
</html>