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