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