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