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