Content
Of Website
Ø Definite
of website
Ø Important
of website
Ø Create
of website
Ø Total
Ø Question and Answer
I.Definite of website
A website is a
collection of web pages (documents that are accessed through the Internet),
such as the one you're looking at now. A web page is what you see on the screen
when you type in a web address, click on a link, or put a query in a search
engine. A web page can contain any type of information, and can include text,
color, graphics, animation and sound.
When someone
gives you their web address, it generally takes you to their website's home
page, which should introduce you to what that site offers in terms of
information or other services. From the home page, you can click on links to
reach other sections of the site. A website can consist of one page, or of tens
of thousands of pages, depending on what the site owner is trying to
accomplish.
II.
Important of website
The importance of a website is determined by many reasons. It’s the
desires and goals that a business company or a person wants to achieve through
this website. However, there are several benefits that can be achieved by
anyone for a personal or professional use. Let’s draw an example. If you have a
business, a website will become a great virtual presentation of what you’re
doing and offering your clients. Besides, it also allows you to target your
market and increase visibility on the web. Website is a great tool to advertise
your products or services online. If you want to inform, communicate and
provide support, there’s no better way than to use your website.
I guess, now you
are determined to make a website but you don’t know how to move forward because
you feel the task is not that easy to accomplish. But in all honesty, creating
a website is not as difficult as it might seem from the first sight. Actually,
you can make it yourself. With help of online tutorials you can learn how to
create a site to store all possible information and media files. Besides, you
can always hire professionals to finish the job for you.
The first thing
you need to do when creating a website is to plan what elements and features
you’d like to incorporate into it. When the planning stage is finished, you can
start to create your own website. There are many website builders that can come
handy. If you know programming languages like HTML, XHTML, CSS, JavaScript you
can literally create a website from scratch.
III.
Create of
website
First you got to
understand the basics. If you are unfamiliar with the magical words like domain
name and web hosting, let’s get clear. Domain name is the name that is
identical to your website. It is the primary address of your site, also called
this URL (www.yoursite.com). It acts like your mail address. Just like having a
unique address for your home, a website should have a unique domain name so
people can see your website on the internet. So what is web hosting? To be seen
your website on the internet, it should be hosted on the internet. Hosting
services allow you to put your website contents on their servers (web space).
Once you completed domain name registration and web hosting service (we will
show you where to find the best deals), we will be using a powerful free CMS
platform called Word Press to build a professional website.
IV.
Total
A website is a collection
of web pages (documents that are accessed through the Internet), such as the
one you're looking at now.
The importance of a
website is determined by many reasons. It’s the desires and goals that a
business company or a person wants to achieve through this website.
If you are unfamiliar with the magical words like
domain name and web hosting, let’s get clear. Domain name is the name that is
identical to your website. It is the primary address of your site, also called
this URL (www.yoursite.com).
How to Create a Simple Web Page With HTML
Edited by Stephen Waines, James Quirk, Tom Viren, Jack Herrick and 113 others
Although you can make a webpage without knowing HTML, you will have inevitable problems no matter what webpage editor you're using and you will need to know HTML to fix it. There are many good websites where you can learn HTML, but this article shows you the basics of creating a website in that format. With this basic introduction, you'll soon be able to make a webpage from scratch!
Method 1 of 1: Using HTML
1
Understand what HTML is. HTML is the coding language that makes web-pages. To see what it looks like, go into Internet Explorer and right-click to choose "View Source".You will see a page of code, and that is HTML. That code is what your browser sees and then interprets it into as that web-page
In Internet Explorer, the VIEW menu option is "source". In Mozilla Firefox, press [Ctrl]+U to view the page's source code. In Safari, select View - View Source (or Option+Command+U).
2
Make your initial web page as simple as possible. If you don't, you'll likely get overwhelmed by the syntax and the script languages.
It's important to remember that you'll be writing your information between an opening HTML tag and a closing HTML tag. An opening tag looks like this: <___> . A closing tag looks like this: </___> . Eventually, the ___ is replaced with a code
3
Go to Start, then "Programs" and then "Accessories." Click "Notepad."
4
Tell the browser what language you are using. Type <html>. It is the first tag you write that tells the computer you're starting a web-page. It will also be closed last, so at the end of the document, close it off by typing this: </html>. This ends the web page.
5
Add the heading of the page as shown.
6
Give your page a title. A title is important because it gives your users an idea what the page is about. Also, when users bookmark your site, that title is all they will see in their bookmark list. The title for HTML code is <title>. Close it off at the end of your title by writing </title> The title is going to show on the tab don't expect it to be the title of the actual website.
7
Work on the body of the page. Type <body> to open the body tag. Then close the body tag by typing </body>. The bulk of the information for your web-page goes between <body> and </body>.
To give your web-page a background color, you can add a style to the body. Instead of simply writing , write <body style="background-color:silver">. You can try a different color or even a hex code. The words in the quotation marks are known as "attributes." They must be surrounded by quotation marks!
8
Write some text between the body tags.
To make the text go to the next line (like pressing "Enter" on your keyboard), write <br>.
Want to add a marquee, otherwise known as a word that moves across a screen? Simply type <marquee>TEXT GOES HERE</marquee>.
9
Add some pictures. If you want to put a picture from the Internet onto your web page, the HTML code for pictures is <img src="URL"> . The closing tag is: . However, the closing tag is optional.
10
Check to make sure all of your tags are closed. Your webpage should look something like this:
-
<title>My Web-page</title> <bgcolor="yellow"> I love wikiHow because <marquee>It's the best website in the world!</marquee> <img src="http://www.wikihow.com/skins/common/images/wikiHow_logo_5.gif">
0 comments:
Post a Comment
Links to this post