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