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