Add social network share buttons to your blog.

Add social network share buttons to your blog.
Today I will show you how how you add social share button after your blog post title. Before starting the tutorial, you should know about social share button. What is social share button? Social share button is a button by which you are able to share your content to social media. This use only one click for sharing content to social media. There are many social media currently in the...

Create Fancy Tables Using css.

Create Fancy Tables Using css.
Use this code for create fancy table. Create a file and paste this code. File name must contain .html format.<!DOCTYPE html> <html> <head> <style> #customers { font-family:"Trebuchet MS", Arial, Helvetica, sans-serif; width:100%; border-collapse:collapse; } #customers td, #customers th { font-size:1em; border:1px solid #98bf21; padding:3px 7px 2px 7px; } #customers th { font-size:1.1em;...

Set the color of the borders by css

Set the color of the borders by css
Hello everybody, how are you? Today I have come with the tutorial about how can you add color in the css border. Some days Ago, I have write a tutorial about making css border. You can view it here. Set the style of the border by css In that tutorial we will learn to create deferent css border and in this tutorial we will learn how to set color in border. Okey, now create a file with name border-color.html...

Make your own php image resizer tools.

Make your own php image resizer tools.
Today I am going to share a new php script, by which you can resize your image without croping image. You may know that php is a strong programing language, by using it, you can solve your any problem. Now, Let's start our tutorial. 1st, Create 3 file and 2 folder for this. 3 filesresize.php - the main file of resize image. index.php - for use resize.php style.css - The file for design (css) 2...

How to create captcha image by php

How to create captcha image by php
Hello guys, how are you? May god keep better you at this moment. However, We see the captcha varification in many website.You can create it using php very easily. I have added the php code which will create a captcha image. Let's view the code <?php session_start(); $md5_hash = md5(rand(0,9999)); $security_code = substr($md5_hash, 25, 5); $enc=md5($security_code); $_SESSION['count']...

[CSS] Set the style of the borders

[CSS] Set the style of the borders
You can add deferent borders in text. Just follow the tutorial. paste this code to your html file and see your output. <!DOCTYPE html> <html> <head> <style> p.none {border-style:none;} p.dotted {border-style:dotted;} p.dashed {border-style:dashed;} p.solid {border-style:solid;} p.double {border-style:double;} p.groove {border-style:groove;} p.ridge {border-style:ridge;} p.inset...

Check your website speed

Check your website speed
Hi, buddy. I just tested http://ftwebbd.blogspot.com with the Full Page Test in Pingdom Tools.This specific test was done on October 7 at 12:18:45 from Dallas, Texas, USA. The web page took 449 mili second to load, used 46 requests, and weighed in at 738.9 kB.The Google Page Speed performance grade for this web page is 89/100 (excellent).There’s a ton of more information you can check out here: http://fpt.pingdom.com#!/cqg2Nl/http:// ftwebbd.blogspot.comI...

10 special use and tricks of .htaccess

10 special use and tricks of .htaccess
.htccess or hyper-text access to the configuration file is a powerful tool. It's specialty is anybody can edit it easily and use. Today we will see the use of this powerful tool.Stop Hotlink Is there anybody who consume your bandwidth by using your uploaded image? Then you can add this code to .htaccess file. Options +FollowSymlinks #Protect against hotlinking RewriteEngine On RewriteCond %{HTTP_REFERER}...

Highlight admin comment in blogspot differently.

Highlight admin comment in blogspot differently.
Hey guys, how are you? Hope you are fine and pray to God to stay fine whole life. Today I have come to share a blogspot tricks that will help you to highlight admin comment differently. This will help your user to find admin comment easily. How can you add this to your blog? First login your blogger account and switch your blog from blog list. Now go to Template and backup your template for security....

Make HTML CSS photo gallery

Make HTML CSS photo gallery
Css and HTML is very important if you want to make photo gallery. Today, I will show you how you can make a photo gallery using html and css. First, make style(css) for our photo gallery. div.img { margin: 2px; border: 1px solid #0000ff; height: auto; width: auto; float: left; text-align: center; } div.img img { display: inline; margin: 3px; border: 1px solid #ffffff; } div.img a:hover img {border:...

How to create a tooltip using CSS without jQuery.

How to create a tooltip using CSS without jQuery.
Tooltip is a great way to show your user more information by simply hovering over an image or text. They can be used, for example, to provide captions for images, or longer descriptions for links, or any useful information which would improve the user experience of your site. Today I’m going to show you how to create a simple tooltip using HTML and CSS to display the title tag of your hyperlinks. Let’s...

Html Fraction tutorial

Html Fraction tutorial
If you want to write fraction than you can write it easily but in html you have to set this for use. I have added the code bellow. If the client does not support CSS it will be rendered as plain text, still readable as a fraction. <span class="frac"><sup>something</sup><span>/</span><sub>something</sub></span><br /> <style>span.frac...

PHP email sending script

PHP email sending script
Php mail sender script → send email what you need.Php have a function to send email and it is mail() The strocture is mail(to,subject,messege,from); Okey, now I start my tutorial. First create a html file and save file with this code. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br /> <html xmlns="http://www.w3.org/1999/xhtml"><br...

Stop Copy paste from your website

Stop Copy paste from your website
Nowadays, some people copy content of our site. The copier, the copy of the computer, right-click (hacker's case is different). So there is no worry, because I will show you today how Right button to your site will be disabled. I think your right button to copy and paste the shortcut to the purchase is disabled. In fact I would disable shortcut to the code will no longer have to fear. It's very easy...

HTML Tables Tutorial

HTML Tables Tutorial
You have seen table in any website mainly sports websites. You can create a table easily by html. There are many tags to show data on table. The primary 3 tags are table tr - (table row) td - (table data) You can create a table by using these 3 tags(grid system). A simple Table <table> <tr> <td>HTML</td> <td>JS</td> <td>SQL</td> </tr> <tr> <td>CSS</td> <td>PHP</td> <td>MySQL</td> </tr> </table> Preview HTML JS SQL CSS PHP MySQL I...

Html superscript, subscript and delete tutorial

Html superscript, subscript and delete tutorial
HTML → Superscript <p> This text is <sup>superscripted!</sup></p> Result: This text is superscripted!   HTML → Subscript <p> This text is <sub>subscripted!</sub></p> Result: This text is subscripted! HTML → Delete You can use del tag to delete any word or line. <p> This text is <del>deleted</del></p> Result: This text...

Create CSS dropdown menu

Create CSS dropdown menu
If you don't know how to create a menu then you can follow this tutorial. Paste the code in a html file. Ex: menu.html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" charset=utf-8" /> <title>My Beautiful css menu</title> <link...

How to protect a php file with password by php

How to protect a php file with password by php
Hello everybody, How are you? EID  MUBARAK to all. Today I am going to show you how can you protect a php file by php. If you want the file will only show for you or by entering password, then you can follow the tutorial.For this work, You must know the basic php. Paste this code in your php file <?php $view = header(location: #allcode); $passMain = yourpasswordhere; echo "<form method='post'...

Random number tutorial in php

Random number tutorial in php
There are many use of random number. In php, there are a function to create random number and it is rand(); ex: <?php echo rand(); ?> It will output a number and refresh the page it will output deferent number. You can create many random number by using bellow code: <?php echo rand(). "\n"; echo rand(). "\n"; echo rand(). "\n"; echo rand(). "\n"; ?> It will output deferent 4 random number. If...

Remove "Powered by Blogger" from your blogspot blog

Remove "Powered by Blogger" from your blogspot blog
Hi guys, How are you? Today I am going to share how you can remove Powered by Blogger attribute. Some days ago, I have shared about how to remove it from blogspot blog's mobile version, today I am sharing about main version. Step 1: Login to blogger and switch the blog which you want to remove attribute. Step 2: Follow this: Dashboard→Template→ backup your template for restore your template...

Popular Posts

Post Category

Blog Statistics

Now online

Page views
Powered by Blogger.