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