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