Use on the webTotal Use [ 3929 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/6ef7cabd9060b1fd16425673d8cd811a?family=Strong+Girls+DEMO" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/6ef7cabd9060b1fd16425673d8cd811a?family=Strong+Girls+DEMO);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Strong Girls DEMO";
src: url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.eot");
src: url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/6ef7cabd9060b1fd16425673d8cd811a.svg#Strong Girls DEMO")format("svg");
}
2CSS rules to specify fonts
font-family: "Strong Girls DEMO";