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