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