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