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