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