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