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