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