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