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