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