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