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