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