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