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