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