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