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