[x] Once you find yourself adding incremental classes (like P4P6 etc), you're probably better off with the :nth-child selector
[ ] Try to use more descriptive class names. H and OO don't really mean anything in context. I'd personally use an ID on the parent like #title-art and then style the individual letters with nth-childs, like #title-art > :nth-child(2) { ... }
[ ] Noticing quite a lot of repeated code like font-family, size, weight etc. Similar to the previous point, you can simplify that by doing something like:
h1
. Use a singleh1
with nestedspan
elements here instead</span>
for one open tagP4
P6
etc), you're probably better off with the:nth-child
selectorH
andOO
don't really mean anything in context. I'd personally use an ID on the parent like#title-art
and then style the individual letters with nth-childs, like#title-art > :nth-child(2) { ... }
[ ] Noticing quite a lot of repeated code like font-family, size, weight etc. Similar to the previous point, you can simplify that by doing something like:
Overall output looks pretty solid! Keeping the design simple helps you focus on getting the details right.