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