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