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