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