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