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