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