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