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