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