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