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