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