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