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