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