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