Get the latest news, exclusives, sport, celebrities, showbiz, politics, business and lifestyle from The VeryTime,Stay informed and read the latest news today from The VeryTime, the definitive source.

Design your own website with basic and simple html tutorials for beginners-how to format text how to

11
Create Your Own Website by Basic Html Tutorials-Design Your Own Website With Easy Html Tutorials
What is a website?
A website is a collection of different webpages.
Now what is a webpage?
Webpage is an individual page of a website written in the language of a computer that can be accessed by the browsers special computer softwares.
What computer language is used for writing webpages?
Html is the basic language.CSS(Cascading Style Sheets) is used for a professional looking webpage layout designing and some other scripting languages are used for creating a webpage.
What computer software is needed for writing a webpage?
There is no need of special software for writing a webpage you can write a webpage in a simple text editor like Notepad or Wordpad.But if you want to create a webpage more easily you can use Microsof Front Page and other webpage editors available on the internet.
How can I start to make a website?
You can start by learning html first because html is the basic language for websites.
What is HTML?
HyperText Markup Language(HTML) is a main markup language that is used to write webpages for displaying on web browsers.
Main Structure of Html is as follows

<html>

<head></head>

<body>

Material of your webpage------

</body>

</html>

Write this code in your Notepad and save it as filename.html and open it in your browser you will see the following result

Material of your webpage-------

Main things to learn in html are:
1.How to format text means how to bold the text,how to write text in italics,how to change the color and font size of the text etc.
2.How to add images in the site because images are very important part of a website.
They are used in the page layout designing also in photo galleries and at many other places.
3.How to add tables because tables are also very important for the alignment of your website material.Tables are also used for the page layout designing.
4.How to add animations.Animations can make your website good looking but excessive use of animation pictures can slow down your page loading.
5.How to add forms.Because forms are used to collect information about the users of our website.
Some of my site content is as follows

Links in html

Links are used to
1.To link your own website's different pages.As I made a link Html Basics in my document.
2.To link pages from anywhere of the world.
There are different ways to show the links in your site as
1.You can show your links by words or sentences using anchor tag.
2.You can show your links by buttons using form method.
3.You can show your links by images.
"a" is anchor tag it links your page to the other pages.
href stands for Hypertext REFerenc.It tells the browser the url or directory of the page which the browser has to open.

How to add images in html

Inserting images to a site is an exciting job.It is very simple to add images to your site.
img stands for image and src stands for source src tells the image name and the location of the image.
Image tag has some attributes as follows

1."width" and "height" attributes change the size of the picture.
2."alt" attribute is used to display the text before image in the image frame.
3."hspace" is the horizontal space between the image and text.
4."vspace" is used to give vertical space between image and text of the document.
5.Throug "align" you can align your image at the left,center or right.
Using images as thumbnails

It is useful when you want to make a photo gallery.Because large size images took long time to load.Therefore thumbnails are used as buttons to load large size images.
There are two ways to make thumbnails of the images
1.Using two pictures one small image for thumbnail and the other original size image to be loaded.
2.Using one picture for thumbnail and original picture.In it thumbnail is resized by changing width and height of the image. Please visit:Basic Html Tutorials

Html Tutorials
Source...
Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.