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