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