Putting Images On A Page
On almost EVERY web page on the net, there is some kind of graphic. I would HIGHLY RECOMMEND that you have AT LEAST one picture on your page. There are mainly two kinds of ways to have graphics on your web page. The first, is to use a graphic that is on another web page somewhere on the web. The second, is to upload the graphic to your own account. Personally, I prefer to use the upload method. If you are using the other way, there is always a chance that the person who made that page will decide to delete that graphic. Then a symbol with a circle, square, and triangle will appear where the graphic was supposed to be, sometimes it will look like it has been torn through the middle:
1)
To display a graphic on some one else's page, you need to find the URL. To do this, I recommend that you have Netscape Navigator. Right click or click and hold down on the graphic, until a menu comes up. Choose "View this Image". Then , copy the URL that appears at the top of the screen, in the "location" box. Let's say that the URL was: http://www.infhost.com/members/web/Images/pic.gif You would type:
<IMG SRC="http://www.infhost.com/members/web/Images/pic.gif">
The result is:
2)
To display a graphic that is in your account, all you have to do is type in the filename. If you didn't make separate directories for graphics and pages, then you just need to type the graphic's name.(i.e. <IMG SRC="pic.gif">
Alternate Text for Images
Some World Wide Web browsers cannot display images. Some users turn off image loading even if their software can display images (especially if they are using a modem or have a slow connection). HTML provides a command to tell readers what they are missing on your pages. The "ALT" attribute lets you specify text to be displayed instead of an image. For example:
<IMG SRC="pic.gif" ALT="How to make a web page">
In this example, "pic.gif" is the picture of a sign. With graphics-capable viewers that have image-loading turned on, you see the graphic. With a non-graphic browser or if image-loading is turned off, the words "How to make a web page" is shown in your window. You should try to include alternate text for each image you use in your document, as it is a courtesy for your readers.
.Menu bar
Quality training
For today's and tomorrow's technology.Computer Institute is committed to customer satisfaction. In the past 05 years ( SINCE 2006 ) , we have created a very friendly learning environment with the latest computer hardware and software technologies. Whether you are new to the computer industry or are looking to improve your skills, we have the right course for you. Well-qualified, experienced certified instructors train the participants with easy-to-use step by step training material in the most optimized period of time. We provide Unlimited Practical hours to Our Students.
09. Linking
Posted by
Acs computer center
at
9:57 AM
URLs
When you make a link, you are making colored text or even a graphic (talked about later). When somebody clicks on this text, it will take them to another web page, or possibly a certain section of a web page. Let's say that you wanted to make a link from your web page, to Yahoo!. The URL of Yahoo! is:
http://www.yahoo.com
To do this, you would type:
<A HREF="http://www.yahoo.com">What ever text that you want to be colored goes here</A>
The result would be:
What ever text that you want to be colored goes here
You can go ahead and try it if you want to.
Links to Specific Sections
Sometimes, you might want to have a link that will take you further down a page, or to a certain section of another page. An example of this is the index to this web page. You click on the colored text, and it takes you to that section. To do this, you need to do two things. The first, is to make the link, and the second, is to make where the link will lead to. NOTE: You cannot make links to specific sections within a different document unless either you have write permission to the coded source of that document or that document already contains in-document named links.
1) To make the actual link, think of a name for the certain spot. Let's say you are going to call it "spot". If this certain spot is on the same page that the link is, you would type:
<A HREF="#spot">Colored Text
Otherwise, you would add "#spot" to the end of the URL.
2) Now, you need to make where the link will take you. Go to the spot where you want the link to take you, and type:
<A NAME = "spot">
Mailto Links
Most people like to have a link on their web page that automatically sends e-mail to an address. If you want to do this, and your name is Dan, and your e-mail address is a@a.com, type:
<A HREF="mailto:a@a.com">Dan</a>
Here is the result of typing this:
Dan
When you make a link, you are making colored text or even a graphic (talked about later). When somebody clicks on this text, it will take them to another web page, or possibly a certain section of a web page. Let's say that you wanted to make a link from your web page, to Yahoo!. The URL of Yahoo! is:
http://www.yahoo.com
To do this, you would type:
<A HREF="http://www.yahoo.com">What ever text that you want to be colored goes here</A>
The result would be:
What ever text that you want to be colored goes here
You can go ahead and try it if you want to.
Links to Specific Sections
Sometimes, you might want to have a link that will take you further down a page, or to a certain section of another page. An example of this is the index to this web page. You click on the colored text, and it takes you to that section. To do this, you need to do two things. The first, is to make the link, and the second, is to make where the link will lead to. NOTE: You cannot make links to specific sections within a different document unless either you have write permission to the coded source of that document or that document already contains in-document named links.
1) To make the actual link, think of a name for the certain spot. Let's say you are going to call it "spot". If this certain spot is on the same page that the link is, you would type:
<A HREF="#spot">Colored Text
Otherwise, you would add "#spot" to the end of the URL.
2) Now, you need to make where the link will take you. Go to the spot where you want the link to take you, and type:
<A NAME = "spot">
Mailto Links
Most people like to have a link on their web page that automatically sends e-mail to an address. If you want to do this, and your name is Dan, and your e-mail address is a@a.com, type:
<A HREF="mailto:a@a.com">Dan</a>
Here is the result of typing this:
Dan
08. Text - F) Character formatting
Posted by
Acs computer center
at
9:55 AM
Character Formatting
You may want to format some of your text differently than others using text styles. There are several types of styles of text that you can use: bold, italic, underline, strikeout, superscript, subscript, teletype, and blinking text are examples. To do these styles, surround your text with the following commands:
<b>, </b> for bold
<i>, </i> for italic
<u>, </u> for underlined
<strike>, <strike> for strikeout
<sup>, </sup> for superscript
<sub>, </sub> for subscript
<tt>, </tt> for teletype
<blink>, </blink> for blinking text (very annoying)
You may want to format some of your text differently than others using text styles. There are several types of styles of text that you can use: bold, italic, underline, strikeout, superscript, subscript, teletype, and blinking text are examples. To do these styles, surround your text with the following commands:
<b>, </b> for bold
<i>, </i> for italic
<u>, </u> for underlined
<strike>, <strike> for strikeout
<sup>, </sup> for superscript
<sub>, </sub> for subscript
<tt>, </tt> for teletype
<blink>, </blink> for blinking text (very annoying)
07. Text - E) Horizontal Line
Posted by
Acs computer center
at
9:52 AM
Horizontal Rules
Every now and then, you might want to have a horizontal rule, or line in your page. Horizontal rules can be many different sizes and lengths. You can also have the line be solid black, by typing NOSHADE. Here are several examples of sizes and widths, and what the outcome is:
<HR SIZE=1 WIDTH=100%>
<HR SIZE=5 WIDTH=50%>
<HR SIZE=25 WIDTH=75%>
<HR SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=1 WIDTH=100%>
<HR NOSHADE SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=10 WIDTH=20%>
Every now and then, you might want to have a horizontal rule, or line in your page. Horizontal rules can be many different sizes and lengths. You can also have the line be solid black, by typing NOSHADE. Here are several examples of sizes and widths, and what the outcome is:
<HR SIZE=1 WIDTH=100%>
<HR SIZE=5 WIDTH=50%>
<HR SIZE=25 WIDTH=75%>
<HR SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=1 WIDTH=100%>
<HR NOSHADE SIZE=3 WIDTH=100%>
<HR NOSHADE SIZE=10 WIDTH=20%>
06. Text - D) Forced Line Breaks
Posted by
Acs computer center
at
9:49 AM
There are many cases in which you want to end typing on one line, and start on the next. To do this, you can use a simple HTML command. This is one of the few commands that you don't have to put an ending command on. Let's say that you wanted to say "Hello, how are you?", but with each word on a separate line. All you have to type is:
Hello,<BR>how<BR>are<BR>you?
The outcome is:
Hello,
how
are
you?
Hello,<BR>how<BR>are<BR>you?
The outcome is:
Hello,
how
are
you?
05. Text - C) Builts and Numbering
Posted by
Acs computer center
at
9:41 AM
There are two types of lists that you can make in HTML, dotted, and numbered. To make a dotted list of: red, orange, green, blue, purple, black, and brown, type:
<UL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</UL>
The result is:
• red
• orange
• green
• blue
• purple
• black
• brown
To make a numbered list of: red, orange, green, blue, purple, black, and brown, type:
The result looks like:
1. red
2. orange
3. green
4. blue
5. purple
6. black
7. brown
<UL>
<LI> red
<LI> orange
<LI> green
<LI> blue
<LI> purple
<LI> black
<LI> brown
</UL>
The result is:
• red
• orange
• green
• blue
• purple
• black
• brown
To make a numbered list of: red, orange, green, blue, purple, black, and brown, type:
- red
- orange
- green
- blue
- purple
- black
- brown
The result looks like:
1. red
2. orange
3. green
4. blue
5. purple
6. black
7. brown
04. Text - b) Paragraph
Posted by
Acs computer center
at
9:36 AM
Whenever you have more than a sentence of writing, you should have paragraphs.
To Make a paragraph of "This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com", type:
<P>This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com</P>
The outcome is:
This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com
To Make a paragraph of "This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com", type:
<P>This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com</P>
The outcome is:
This is a web page. How do you like what I've done? Please e-mail me with any suggestions at a@a.com
03. Text - a) Heading
Posted by
Acs computer center
at
10:44 AM
Text
Headings
HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are displayed in larger, or smaller fonts, and usually bolder. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is:
<h1>Hello</h1>
Hello
<h2>Hello</h2>
Hello
<h3>Hello</h3>
Hello
<h4>Hello</h4>
Hello
<h5>Hello</h5>
Hello
<h6>Hello</h6>
Hello
Headings
HTML has six levels of headings, numbered 1 through 6, with 1 being the largest. Headings are displayed in larger, or smaller fonts, and usually bolder. If you wanted to type "Hello", this is what you would type for each heading, and what the outcome is:
<h1>Hello</h1>
Hello
<h2>Hello</h2>
Hello
<h3>Hello</h3>
Hello
<h4>Hello</h4>
Hello
<h5>Hello</h5>
Hello
<h6>Hello</h6>
Hello
02. Title
Posted by
Acs computer center
at
10:39 AM
Title
The first thing to put on your web page, is a title. The title is what will show up in the very top of the window. Let's say that your title is going to be "John Doe's Web Page", you would type:
<title>John Doe's Web Page</title>
In HTML, every command is surrounded by <'s, and >'s. And in most commands, you need to tell the web browser when to end this command. You do this by putting a back slash (/) in front of the ending command, as in above. Since HTML isn't case sensitive, is the same as , which is the same as . Next, you need to decide what you want to put on your page. Text, links, graphics, and text fields, are just a few ideas.
The first thing to put on your web page, is a title. The title is what will show up in the very top of the window. Let's say that your title is going to be "John Doe's Web Page", you would type:
<title>John Doe's Web Page</title>
In HTML, every command is surrounded by <'s, and >'s. And in most commands, you need to tell the web browser when to end this command. You do this by putting a back slash (/) in front of the ending command, as in above. Since HTML isn't case sensitive,
01. Introduction
Posted by
Acs computer center
at
10:24 AM
Getting Started
There are basically two ways to make a web page. The first way is to create the page(s) offline and then upload them to your Internet Service Provider (ISP) via FTP. The second way is to create your web page(s) online using a Telnet program by accessing your UNIX account, if you have one.
If you are creating your web page(s) offline, do so in any text editing or word processing document. Make sure that when you save your document, you save it as a "text", "plain text" or "text only" document. Otherwise it will not be read properly by a web browser. Once you have created your page(s), you will need to contact your ISP about how to go about uploading them to your server.
If you have a UNIX account, you can create your web page(s) online. You first need to get a program that can access your UNIX account. I recommend Telnet for the Mac or Ewan for Windows 95/98.
Once you can access your account, you need to make a new directory called "public_html". You can do this by typing:
mkdir public_html
After this, change your directory to this new directory called "public_html".
cd public_html
If you want to, you can make other directories, one for all the web pages that you make, and one for all of the graphics that you have. Follow the same steps as above to do this.
Next, you need to think of a filename for your page (this is not a title, but what will be in the URL). A common filename for a main web page, is "index". Once you've decided on this, add ".html" to the end of it. Then type (i.e.)
pico index.html
Of course, use your page's filename, instead of this one. Next, you need to gain some knowledge of the many HTML commands. Lucky for you, I've already gotten some of the basic commands for you. Follow the index below, to decide what to put on your page, and how to do it. Once you've gotten started, exit your page. You can do this by pressing control-x. Then you need to type:
chmod 744 index.html
Only do this with the filename of your page. You only need to do this the very first time that you leave your web page. This command will make sure that nobody else can delete your page. You will need to do this to any other pages that you make in the future. Then, look at your page on the WWW. Lets say that your server is "www.domain.com", your username is "username", and the name of your page is "index.html". The URL would normally be:
http://www.domain.com/~username/index.html
However, you will need to contact your ISP for your URL.
If you have made separate directories for pages and graphics, then you need to include that in the URL also. Lets say that you made a directory for all of your web pages, called "Pages". The new URL would be: http://www.domain.com/~username/Pages/index.html
There are basically two ways to make a web page. The first way is to create the page(s) offline and then upload them to your Internet Service Provider (ISP) via FTP. The second way is to create your web page(s) online using a Telnet program by accessing your UNIX account, if you have one.
If you are creating your web page(s) offline, do so in any text editing or word processing document. Make sure that when you save your document, you save it as a "text", "plain text" or "text only" document. Otherwise it will not be read properly by a web browser. Once you have created your page(s), you will need to contact your ISP about how to go about uploading them to your server.
If you have a UNIX account, you can create your web page(s) online. You first need to get a program that can access your UNIX account. I recommend Telnet for the Mac or Ewan for Windows 95/98.
Once you can access your account, you need to make a new directory called "public_html". You can do this by typing:
mkdir public_html
After this, change your directory to this new directory called "public_html".
cd public_html
If you want to, you can make other directories, one for all the web pages that you make, and one for all of the graphics that you have. Follow the same steps as above to do this.
Next, you need to think of a filename for your page (this is not a title, but what will be in the URL). A common filename for a main web page, is "index". Once you've decided on this, add ".html" to the end of it. Then type (i.e.)
pico index.html
Of course, use your page's filename, instead of this one. Next, you need to gain some knowledge of the many HTML commands. Lucky for you, I've already gotten some of the basic commands for you. Follow the index below, to decide what to put on your page, and how to do it. Once you've gotten started, exit your page. You can do this by pressing control-x. Then you need to type:
chmod 744 index.html
Only do this with the filename of your page. You only need to do this the very first time that you leave your web page. This command will make sure that nobody else can delete your page. You will need to do this to any other pages that you make in the future. Then, look at your page on the WWW. Lets say that your server is "www.domain.com", your username is "username", and the name of your page is "index.html". The URL would normally be:
http://www.domain.com/~username/index.html
However, you will need to contact your ISP for your URL.
If you have made separate directories for pages and graphics, then you need to include that in the URL also. Lets say that you made a directory for all of your web pages, called "Pages". The new URL would be: http://www.domain.com/~username/Pages/index.html
ACS CONTACT
Posted by
Acs computer center
at
7:08 PM
PARTNERS :
1. M.M.MOHAMED INSAR
2. M.N.ASLY DILSHAM
3. M.S MOHAMED SINAN
M.M.MOHAMED INSAR
BESTECH MACHINES AND TOOLS
( ACCOUNTANT )
550 Sri Sangaraja Mawatha
Colombo - 10
Tel : 2437392-3 Fax : 2436911
Mob : 0773952960
M.N ASLY DILSHAM
CRESCENT COMMERCIAL PVT LTD
( ASSISTANT ACCOUNTANT )
38A, 3rd Cross Street
Colombo - 11
Tel : 2320087 Fax : 2433419
Mob : 0773952958
OUR SERVICES
Posted by
Acs computer center
at
10:41 AM
WE PROVIDE THE FOLLOIWING SERVICES TO OUR VILLAGE PEOPLES
1. CONDUCTING COMPUTER CLASSES
2. BOOK SHOP FACILITIES - BOOKS ORDER PURCHASING ( NEEDED BOOKS ARE
GRANTED WITH IN 24 HOURS )
3. TELEPHONE AND ELECTRICITY BILL PAYMENTS
4. TYPE SETTING - WE UNDER TAKE BIG TYPING PROJECTS AND PUBLISHING
BOOKSES ( TAMIL AND ENGLISH )
5. SALES OF COMPUTER SOFTWARES ( ANY TYPE OF SOFTWARE )
6. SALES OF CHILRENS CDS ( GAMES , CARTOON, AND FILMS )
7. INTERNET CAFE
8. COMPUTER REPAIRING
9. COMPUTER PARTS SELLING
10. ELECTRICAL AND HARDWARE GOODS - ORDER PURCHASEING
AVAILABLE CDs
Posted by
Acs computer center
at
10:33 AM
- Rewrittable CDs
- Lence Cleaning CDs
- Software CDs
- Learning and Documentary CDs( COMPUTER RELATED )
- Childrens Films
- Childrens Cartoon CDs
- Islamic Documentary CDs
- Kaseeda CDs
- Computer Game CDs
- Nursary CDs ( Rhyms, Songs )
- Bayyan CDs
- Lence Cleaning CDs
- Software CDs
- Learning and Documentary CDs( COMPUTER RELATED )
- Childrens Films
- Childrens Cartoon CDs
- Islamic Documentary CDs
- Kaseeda CDs
- Computer Game CDs
- Nursary CDs ( Rhyms, Songs )
- Bayyan CDs
AVAIABLE CDs
- Blank CD / DVD
ISLAMIC SITES
Posted by
Acs computer center
at
10:25 AM
COMPUTER CLASSES
Posted by
Acs computer center
at
7:57 AM
We provide the following courses
at Very Cheapest RATE
1. Diploma in computer studies
2. Diploma in Graphic Designing
3. Diploma in Hardware Engineering
4. Diploma in Web designing
5. Diploma in Computerized Accounting
6. Internet & E - mail
at Very Cheapest RATE
1. Diploma in computer studies
2. Diploma in Graphic Designing
3. Diploma in Hardware Engineering
4. Diploma in Web designing
5. Diploma in Computerized Accounting
6. Internet & E - mail
Subscribe to:
Posts (Atom)