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