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