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