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