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