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