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