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