Use on the webTotal Use [ 3064 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f2fa1627b560ff67cfe786f6bda6977c?family=HomegirlFiftyShades" 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/f2fa1627b560ff67cfe786f6bda6977c?family=HomegirlFiftyShades);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "HomegirlFiftyShades";
src: url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.eot");
src: url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f2fa1627b560ff67cfe786f6bda6977c.svg#HomegirlFiftyShades")format("svg");
}
2CSS rules to specify fonts
font-family: "HomegirlFiftyShades";