Related Articles
5 Websites to Check Keywords For Free Online
If you have a website then struggling to get good traffic or earning less from the sites it is due to the Traffic to get good traffic the quality of an article is very important, so if you are writing an article for your website it is always good to research the keyword for the […]
Open a Url onload of a Website or Pagee
You can able to load a webpage while accessing a particular Website using Javascript, see below for code. <script> function openWindow() { window.open(‘http://www.google.com‘,’a’,’height=300,width=600′); } </script> <body onload=”openWindow();”> </body>
How to Set Iframe Height to 100%
Use below snippet to set height of an iframe to 100%, however we can also set width of ifram to 100% also. <iframe src=”http://domain.com” frameborder=”0″></iframe> iframe { display:block; width:100%; height:100vh; }