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