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