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