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