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