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