get help in general - we have more specialized help rooms here: https://gitter.im/FreeCodeCamp/home
darrenfj sends brownie points to @marmiz :sparkles: :thumbsup: :sparkles:
:star2: 1103 | @marmiz |http://www.freecodecamp.org/marmiz
span
tag in the icon markup
darrenfj sends brownie points to @khaduch :sparkles: :thumbsup: :sparkles:
:star2: 3542 | @khaduch |http://www.freecodecamp.org/khaduch
khaduch sends brownie points to @darrenfj :sparkles: :thumbsup: :sparkles:
:star2: 2292 | @darrenfj |http://www.freecodecamp.org/darrenfj
darrenfj sends brownie points to @thekholm80 :sparkles: :thumbsup: :sparkles:
:star2: 1604 | @thekholm80 |http://www.freecodecamp.org/thekholm80
i
element instead of the span
? It's working for me
<head>
code into the HTML panel. CodePen's template fills in with information so that it has its own head section, and your styling will go in there. Then it will put the stuff in the HTML panel into the <body>
section, which could override or collide with things that you have in your CSS section. I haven't checked if that might be causing your issue?
nileresz sends brownie points to @kbaig :sparkles: :thumbsup: :sparkles:
:cookie: 463 | @kbaig |http://www.freecodecamp.org/kbaig
T
ype with uppercaseT
ki4jgt sends brownie points to @kbaig and @moigithub :sparkles: :thumbsup: :sparkles:
:cookie: 464 | @kbaig |http://www.freecodecamp.org/kbaig
:star2: 3722 | @moigithub |http://www.freecodecamp.org/moigithub
ki4jgt sends brownie points to @sorinr :sparkles: :thumbsup: :sparkles:
:star2: 1371 | @sorinr |http://www.freecodecamp.org/sorinr
<style>
.red-text {
color: red;
}
P {
font-size: 16px;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching
<style>
.red-text {
color: red;
}
P {
font-size: 16px;
Font-family: monospace;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p class="red-text">Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass snif</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> attack your ankles chase the red dot, hairball run catnip eat the grass snif</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>
P
should be lower case
<style>
.red-text {
color: red;
}
p{
font-size: 16px;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p class="red-text">Kitty ipsum dolor sit amet, shed 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>
<style></style>