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