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