-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCurriculum.html
73 lines (70 loc) · 2.41 KB
/
Curriculum.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=content-width">
<title>Cat Photo App</title>
<link rel="stylesheet" href="style2.css" />
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 class="red-text">Cat Photo App</h1>
<p>
View more
<a href="http://freecatphotoapp.com" target="_blank">cat photos</a>
</p>
<img
class="smaller-image thick-green-border"
src="https://bit.ly/fcc-relaxing-cat"
alt="A cute orange cat lying on its back."
/>
<h2 class="pink-text" id="orange-text">Some Title Here</h2>
<div class="silver-background">
<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>thunder</li>
<li>other cats</li>
</ol>
</div>
<p>
Kitty ipsum dolor sit amet, shed <a href="http://freecatphotoapp.com"> cat photos </a> everywhere shed everywhere
stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
</p>
<p>
Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy
fur catnip scratched.
</p>
<form action="/submit-cat-photo" id="cat-photo-form">
<input type="text" placeholder="cat photo URL" />
<button type="submit">Submit</button>
</form>
<form id="cat-photo-form">
<label for="indoor">
<input id="indoor" type="radio" name="indoor-outdoor" />
Indoor</label
>
<label for="outdoor">
<input id="outdoor" type="radio" name="indoor-outdoor" />
Outdoor</label
>
</form>
<form id="cat-photo-form">
<label for="loving"><input id="loving" type="checkbox" name="personality" /> Loving</label>
<label for="playfull"><input id="playfull" type="checkbox" name="personality" /> Playfull</label>
<label for="sleeping"><input id="sleeping" type="checkbox" name="personality" /> Sleeping</label>
</form>
<h5 class="injected-text">margin</h5>
<div class="box yellow-box">
<h5 class="box red-box">padding</h5>
<h5 class="box blue-box">padding</h5>
</div>
<footer></footer>
</body>
</html>