-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcatapp.html
More file actions
72 lines (64 loc) · 1.54 KB
/
catapp.html
File metadata and controls
72 lines (64 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.green-text {
color: green;
}
h2 {
font-family: cursive, Monospace;
}
ul>li,ol>li {
list-style: none;
color: aliceblue;
background: green;
border-radius:50%;
width: 150px;
margin:2px;
padding:10px;
text-align:center;
}
ol>li {
background: red;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-radius: 70%;
}
.smaller-image {
width: 100px;
}
</style>
<link href="C:\Users\RAJAT\AppData\Roaming\SPB_16.6\htmlcss\roar_r_logo_1.png" rel = "icon" type = "image/x-icon" />
<title>catapp</title>
</head>
<body>
<h2 class="green-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a></p>
<a href="#"><img class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>cute dog</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Crazy</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</body>
</html>