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