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