How to get bold title text?

I can’t find out how to pass the title text to some (bold) like in this project .

Here is my html / css project .

Something is wrong with my footer, I cannot give it margin-top or margin-botton: /

I hope someone can give me some advice and tell me what I can do better :)

+4
source share
2 answers

For bold, delete

<b>TEXT</b> 

and use

 <span style='font-weight: bold;'>TEXT</span> 

For a field, try padding, or add this before the FOOTER tag

 <div style="clear: both;"></div> 
+1
source

For bold text, I prefer to make the boldText class that can be applied to almost anything without re-declaring the inline style: .bold text {font-weight: bold; }

 <element class="boldText">...</element> 

That way your “element” can be span, p or an integer div if you want.

Regarding the issue of footer margin; I just looked at your site and I don’t see anything like a “problem”. Have you identified this part yet?

0
source

All Articles