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