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