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