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