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