Wednesday, February 28, 2018

How to teach yourself web development

Today I will share with you 5 things that I picked up from learning web development for almost 4 years. I was using WordPress almost for the past 6 years. I didn't take it seriously until about 4 years ago I was convinced that the best way to go about learning it is to take a project-based approach. It keeps it more interesting especially if...
Share:

Thursday, February 1, 2018

How to submit HTML form to Google Sheet

How to submit HTML form to Google Sheet In six simple steps, you can submit HTML form to google sheets.  1. Create a new Google Sheet First, go to Google Sheets and withStart a new spreadsheet the templateBlank. Rename it. With any name you want. Put...
Share:

Saturday, October 15, 2016

HTML 5 and CSS 3 Responsive theme

Responsive them Mobile File setup index.html <html> <head> <title>Zia Personal Web site</title> <meta charset="utf-8"> <link rel="stylesheet" type="text/css" href="css/style.css"> <meta name="viewport"...
Share:

How to filter data from a MySQL Database Table with PHP Function

Here if we want to filter data from above table. First we will use a function which will use to get the data in array formate as following <?php function leaders($mysqli) { $arr = array(); if($stmt = $mysqli->prepare("SELECT firstname, lastname, pts FROM...
Share:

How to connect your's Blog to Google Analytic

Google Analytic  Google Analytic shows you the picture of your viewers, like what kind of viewers you have. From which places they are and what they think about your's bogs or website, I means what they feel. Know your audience Through Google Analytic you...
Share:

A very simple way to create main interface using Div tag

A very simple way to create main interface using Div tag. <html> <head> <title> How you can use HTML <div> tag</title> <style> #body { padding: 0; margin:0; background: black; } #header{ background: #ffffff; width:...
Share:

Saturday, October 1, 2016

How to use GitHub - Basic understanding

What GIT dose? GIT is a very handy tool for any web developer. If you work on big project some time it is very very difficult to keep track of you code, in such case Git help. Git can be valuable for a single developer but more valuable for a team of developers. It allows...
Share:

How to use GitHub - Basic understanding

What GIT dose? GIT is a very handy tool for any web developer. If you work on big project some time it is very very difficult to keep track of you code, in such case Git help. Git can be valuable for a single developer but more valuable for a team of developers. It allows...
Share:

Wednesday, August 10, 2016

Complete index page including Bootstrap, FontAwesome and jQuery

Just add the following code to your index page and you are ready to use all the functionalities of Bootstrap, FontAwesome and jQuery <!DOCTYPE html> <html> <head> <title> </title> <!-- Favicon Start --> <link...
Share:

Saturday, August 6, 2016

Use CSS To Work With Background Images

Use CSS To Work With Background Images In order to do this you can easily use CSS for your websites. Here is the example CSS code to apply those effects. If you play with this you can achieve your goal according to your's need. 1. Overlay the image Apply image overlay...
Share:

Wednesday, July 13, 2016

What are basic fundamentals of JavaScript?

What are basic fundamentals of JavaScript? According to w3schools JavaScript is the programming language of HTML and the Web. JavaScript is used to add more functionalities to you web applications. Where to use JavaScritp? You can use JavaScritp in different ways which...
Share: