li
inside f ul
seaner71 sends cookie points to @gildara and @lilyheart :sparkles: :thumbsup: :sparkles:
:cookie: 335 | @lilyheart |http://www.freecodecamp.com/lilyheart
:cookie: 395 | @gildara |http://www.freecodecamp.com/gildara
li3097 sends cookie points to @seaner71 :sparkles: :thumbsup: :sparkles:
:warning: could not find receiver for seaner71
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></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>thunder</li>
<li>other cats</li>
</ol>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Affectionate</label>
<label><input type="checkbox" name="personality"> Playful</label>
</form>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Affectionate</label>
<label><input type="checkbox" name="personality"> Playful</label>
code
in a line, just surrnd it with a single tick n either side.
standout
that way. lol
okie dokie
seaner71 sends cookie points to @lilyheart :sparkles: :thumbsup: :sparkles:
:warning: seaner71 already gave lilyheart points
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
.silver-backgound {
background-color: silver;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Click here for <a href="#">cat photos</a>.</p>
<a href="#"><img class="smaller-image thick-green-border" alt="A cute orange cat lying on its back. " src="https://bit.ly/fcc-relaxing-cat"></a>
<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>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
<label><input type="checkbox" name="personality" checked> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Energetic</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
li3097 sends cookie points to @lilyheart :sparkles: :thumbsup: :sparkles:
:cookie: 336 | @lilyheart |http://www.freecodecamp.com/lilyheart
lilyheart sends cookie points to @li3097 :sparkles: :thumbsup: :sparkles:
:cookie: 56 | @li3097 |http://www.freecodecamp.com/li3097
<style>
body {
background-color: black;
font-family: Monospace;
color: green;
}
#orange-text {
color: orange;
}
.pink-text {
color: pink;
}
.blue-text {
color: blue;
}
</style>
<h1 id="orange-text" class="pink-text !important blue-text" style="color: white">Hello World!</h1>
!important
should almost never ever ever ever be used. There is always a better way. Good to know for debugging and the like. but that's about it.