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