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