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