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