Admin
Web hosting
No Comments

Free Domain Name from whost.in

whost.in is a premier web hosting company of India. They often have some good offers. Get free domain name (com/ org/ info/ net/ biz/ co.in) with any web hosting plan. Web hosting plans starts only Rs. 1500/- per year OR 30$ per year. With a free domain name you are getting 10$ discount on all plans.

They also offer 100% credit in case your site is not online for 99.9%

You can also avail some cool offers on reseller and VPS plans. Current offer on reseller plan is 50% off lifetime. Use coupon code reseller50%

Current offer on VPS plan is 30% lifetime off, Double space, Double bandwidth. To get 30% discount use coupon code VPSMAR09 To get Double space + Double bandwidth, contact sales on whost.in

Also, check www.whost.in/specials for special offers from whost.in

Admin
Free Script
No Comments

Free Image Hosting Script

Lots of people want to have a image hosting site. You can also start your own image hosting site for free. There is a free image hosting script called Mih Multu Image Hosting Script.You will need to have the following to allow Mihalism Multi Host to operate:

1. Apache Web Server
2. MySQL Database Server
3. PHP: Hypertext Preprocessor
4. GD Graphics Library
II. Installation

Follow the following steps to begin installation of Mihalism Multi Host:

1) Once downloaded, unpack the content of the .zip archive to a folder of your choice.

2) If your computer is not your actual web server, upload the content of the folder to
your web server.

3) In a web browser, go to location of where you uploaded the content.

4) Once there, follow the instructions on the screen.

Read more

Admin
Free Script
No Comments

Free Joke Script

wanna make a joke site. Its very easy with some joke script. There are few free scripts also for this. One which I know is from EasysiteNetwork.

See a demo of this site here :

Site Demo

See a demo of the site admin here :

Admin Demo

Download the site for free at the downloads section here :

Download Here

The script need PHP and MySQL.

Site features include :

  • List jokes by category or view all jokes or all pictures
  • Rate a joke functionality
  • Joke and Funny picture of the week feature
  • Email joke to a friend functionality
  • Email newsletter signup functionality
  • View latest 10 jokes, view latest 10 pictures, view top 10 rated jokes
  • Full text search of the entire jokes database
  • Users can create accounts to add their own jokes to your site. Your users provide your content
  • Users can view the jokes they have added and see which are waiting for approval, added or been declined
  • Fully SEO’ed content urls for better search engine performance

Read more

Admin
Free Script, Tools
No Comments

Free Wallpapers Script

A wallpaper site can be good money making site. All you need is a good collection of wallpaers and a good wallpaper script.

For wallpapers, just search on some webmaster forums. You can get thousand of high quality non-watermark wallpapers for as low as 5$.

Now, you need a wallpaper site script. This can be free. Below is list of some free wallpapers script.

  1. Gallery2:
  2. Download

  3. Coppermine Photo Gallery:
  4. Download

  5. phpAlbum:
  6. Download

Admin
SEO
2 Comments

List of Dofollow Forums

SitePoint Forums PR7
Digitalpoint PR6
Harmony-Central Forums PR6
Search Engine Round Table PR6
Submit Express Forums PR6
Start Ups PR6
v7n PR6
Webmaster Talk
PR6
Comic Book Resources Forums PR5
Web Design Forum
PR5
Marketing Chat PR5
Earners Forum PR4
TriPHP Forums PR4
360 Gamerscore PR4
Acorn Domain Name Forums PR4
Book and Reading Forum PR4
Ableton Forums PR3
The In Place PR3
6Pins PR3
IQ69 PR3
Hot4’s Forums PR3
Directory Junction PR3

Admin
Tools
No Comments

Image Editing Softwares for your website

You must care to use image of light size. Heavy images on your site can make your web site slow. One way to decrease size of images is by compressing images. Any good image editing tool can be used for compression. A good image tool should be used to make images, buttons, header image, navigations bars etc for your website.

There are lots of image editing tool like:
1) Irfan view
www.irfanview.com

2) PhotoFilter

www.opanda.com/en/pf

3) Gimp

www.gimp.org/

4)  Paint .NET

www.getpaint.net/

5) ImageReady

6) Adobe Photoshop

http://www.adobe.com/products/photoshop/index.html

Admin
web design
No Comments

Web Design Tools

There are numbers of tools available that can be used to make your website without learningany coding. You can have a great looking professional website without doing any coding.

Following tools can be used to make a professional looking website.
1) CoffeeCup HTML Editor
http://www.coffeecup.com/html-editor/

2) Bluevoda Builder
www.bluevoda.com/site-builder.htm

3) Microsoft frontpage
www.microsoft.com/FRONTPAGE/

4) Serif webplus
www.serif.com

5) Adobe Dreamweaver
www.adobe.com/products/dreamweaver/

And many more. Google can help you to find more such softwares, few may be free also. You dont need to learn any coding to use the above mention tools. They have pre-made templates. Just edit the text, replace the images and your website is ready. You acan also download templates and edit them using these tools. There are lots of free templates available for download on internet.

Admin
HTML
No Comments

HTML Basic Tags

1) Heading Tag:
There are six levels of heading in HTML:
h1, h2, h3, h4, h5, h6

Example:
<h1> Heading Text one</h1>

Heading Text one

<h2> Heading Text two </h2>

Heading Text two

<h3> Heading Text three</h3>

Heading Text three

<h4> Heading Text four</h4>

Heading Text four

<h5> Heading Text five</h5>

Heading Text five

<h6> Heading Text six</h6>

Heading Text six

2) Paragraph Tag:
<p> and </p>
To specify the paragraph.

3) <br> or </br> Tag:
To break line. Use this tag to start a new line.

4) <em> Tag:
Adds emphasis to words.

5) <a> Tag: Used for linking.
Example: <a href=”http://www.web-tut.com”>web tutorials</a>

Result: web tutorials

And so on we have many HTML tags. We will be discussing all important tags later.

Admin
HTML
No Comments

HTML Basic

Full form of HTML is “hypertext markup language”. It is most basic web designing language basic for all web page development. HTML is very easy to learn and simple to use. An alternative to HTML coding is WYSIWYG editor, but it is good to do own coding to build your HTML pages. You must know HTML to learn other web designing languages. HTML need simple text editor like notepad to do coding. Write your HTML codes on a notepad and save the file as anything.html ot anything.htm

The saved file should open in a web broswser, and you can see how your HTML page will look in a web browser.

HTML is based on tags. It contains “markup tags”, that tell web browsers how to follow the instructions enclosed between the tags. The HTML tags are written within brackets <>

Every tag has a start point and a end point. Like for a paragraph:
<p> -> start tag of paragraph
</p> -> start tag of paragraph

Text and instruction  is enclosed within the tag. Tag and instruction in HTML are not case sensetive. Every HTML document start with the tag <html> and end with the tag </html>, indicating start and end of the HTML document.

A basic or simple HTML format is:

<html>
<head>
<title>Title of the webpage</title>
</head>
<body>
Text on the webpage
</body>
</html>

Admin
Getting Started
2 Comments

Get a Free Ready Made website

Most people don’t know about web designing, but want to have a personal website. For such people there is solution too. There are few sites which offer free webhosting and ready made tools, templates to create your website.

Blog is best tool to make your personal websites. There are few free blogging software which offer webhosting also. I don’t want to suggest many free blogging options, but I will suggest the best. There are two best blogging software and both are free.

1) wordpress
wordpress is a free opensource blogging software. Visit www.wordpress.org to get a free account. There are lots of themes and plugins to make your website more powerful and attractive.

2) Blogspot
Blogspot is a Google service. It is another good free blogging service. You can use your google account to get started at blogspot. Visit www.blogspot.com to get started with blogspot.