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