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