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