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