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