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