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