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