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