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