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