Sunday, January 13, 2019

A dumb guide on How to create a website of your own without any money

MAke free website without any money

Are you a student having no money but want to make a website just for the satisfaction of it or just to impress your friends.Well you have come to the right spot.

For a  website to work there should be only two things you should worry about :

1.The domain name (.com, .uk, .in , .us ) -> this is the website name or URL that can be bought online using domain registrars like googledomains, godaddy.com.

An example be like - www.google.com , www.yahoo.com


2.The Hosting  -> Websites are stored or hosted in servers located in some physical place in the world.

There are normally three kinds of hosting

Dedicated hosting --> For big websites ,having lot of traffic
Shared hosting --> For small sites with little traffic
Free hosting --> For hobbyists and students eg: Blogger


Now blogger is google's  platform for blogging and posting online. It is free hosted for lifetime and it can be used for various applications. The url or domain will look like this --


mycoolurl.blogspot.com

How to create a blogger blog ??

Well it is so  easy as it gets


1.Go to blogger.com
2.Click on create your blog
3.Choose a Title
4.Choose domain name like "resourcemint.blogspot"
It will check for its availability and if available you will see it turns green
5.Click on create and youre ready to go
6.Click on posts, create your first post and that's it..!!!


A FREE SITE in your hands..!!










How to create a table in blogger blogspot

Creating a table in a blogspot


1. Go to the post /page where you want to compose the table 

2.Click on HTML view 

3.Paste the below given piece of code in the HTML page view


<table>
<tbody>
<tr>
<th>H1</th>
<th>H2</th>
<th>H3</th>
</tr>
<tr>
<td>Useme</td>
<td>Lets do this</td>
<td>GOGO</td>
</tr>
<tr>
<td>Nice</td>
<td>Bad</td>
<td>Worst</td>
</tr>
<tr>
<td>Yes</td>
<td>Doit</td>
<td>experiment</td>
</tr>
<tr>
<td>Get</td>
<td>It</td>
<td>Done</td>
</tr>
</tbody>
</table>
It is essential to know that the initial <th> corresponds to the number of headings or basically columns and <td> the data in the respective rows..

Edit the text accordingly to your needs and if needed then add CSS to customise even more ..!!!