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