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