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