I have used one google webfont i.e. "dancing script" and also added using @font-face, font-family but it is not appearing in the browser. I want to check that while viewing the site, which fonts is correctly uploaded or can be used to render properly. I mean to say that I want to check whether "dancing script" is uploaded properly in the browser or not.
Asked
Active
Viewed 461 times
2
-
can you give any examples of code? a live link? It's very hard to help you if you don't – Feb 04 '14 at 11:10
-
I have added by this way, so whenever te font-family dancingscript will be used it should render properly – Rohit Singhal Feb 04 '14 at 11:11
-
If that's what you got from Google Web Fonts that probably works, It's your css and html markup we need to see, to see where you are going wrong. – Feb 04 '14 at 11:13
1 Answers
1
Hi here is the fiddle example.Have a look.You can understand everything!
Fiddle :http://jsfiddle.net/nikhilvkd/GrvJ7/
span{
font-size:30px;
color:green;
font-family: 'Dancing Script', cursive;
}
you can add google font css file like as
<link href='http://fonts.googleapis.com/css?family=Dancing+Script' rel='stylesheet' type='text/css'>
OR
import in your existing css file like this;
@import url(http://fonts.googleapis.com/css?family=Dancing+Script);

Krish
- 1,884
- 2
- 16
- 40
-
I believe the OP has all this, but isn't seeing why the font isn't displaying in design – digitalextremist Feb 04 '14 at 11:41
-
1