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