The following are links to additional questions that our community has asked about this exercise:
This list will contain other frequently asked questions that aren’t quite as popular as the ones above.
Currently there have not been enough questions asked and answered about this exercise to populate this FAQ section.
This FAQ is built and maintained by you, the Codecademy community – help yourself and other learners like you by contributing!
Not seeing your question? It may still have been asked before – try searching for it by clicking the spyglass icon () in the top-right of this page. Still can’t find it? Ask it below by hitting the reply button below this post ().
I just completed the exercise. Indeed, the first paragraph changed to “arial”.
The question is that I put the css code under the head, as the exercise demands, but the “arial” worked only for the first paragraph, not for the following paragraphs. I thought that at the head it would be global for all the paragraphs.
I’ve learnt that there are three different ways to make use of css styling. The inline, the ? tag and the separate .css file. My question now is, Can you use the three in a single file? Also, in a case where i use different styles for a particular element e.g
, which would overwrite the other? Like if in the inline styling, i set the color of
to red but in the style tag i set it to blue and in the .css file, its set to green… which would actually appear/
Not something that would actually affect the content, but just curious - what is the conventional norm when adding < style > element to the < head > of the html code - should the < title > element come before or after < style >?
I am just a beginner myself, but from what I gather, “p” (or any other tag name) tells the browser to render everything with these tags (the first paragraph in the exercise we just completed) in the style you specify in the curly brackets.
total noob here but enjoying the lessons immensely!!
my question is why teach or example the coding for style as
" p {
font-family: Arial;
}"
when p{ font-family: arial;}"
works the same way?
In this exercise, I kept getting it wrong because I didnt capitalize the word “Arial” in the styles.css sheet.
Is it necessary to capitalize font names? Will they still work if we don’t in real world application?