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