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