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