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