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