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