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