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