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