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