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