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