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