Go Back   Velocity Reviews > Newsgroups > Computer Information
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

Computer Information - Just want to write a title in HTML??

 
Thread Tools Search this Thread
Old 05-03-2004, 01:47 PM   #1
Default Just want to write a title in HTML??


When i signed up with TISCALI, you get a free webspace.....anyway, I
activated it,gave it a name,...now I have to create a page(or 2,3), and
UPLOAD it to Tiscali..........What I want to do is just be able to display a
title for the page, could anyone explain how i would go about doin' this,
say..called "BILL", then tiscali would allow me to upload it and I can work
on it from there......WHICH APP SHOULD I USE, and what should i select to
type in ..say,..."BILL"?????
Cheers and ALL the Best......FRED C


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.675 / Virus Database: 437 - Release Date: 02/05/2004




fredcromer
  Reply With Quote
Old 05-03-2004, 02:15 PM   #2
John
 
Posts: n/a
Default Re: Just want to write a title in HTML??

On Mon, 3 May 2004 13:47:09 +0100, "fredcromer"
<> wrote:

>When i signed up with TISCALI, you get a free webspace.....anyway, I
>activated it,gave it a name,...now I have to create a page(or 2,3), and
>UPLOAD it to Tiscali..........What I want to do is just be able to display a
>title for the page, could anyone explain how i would go about doin' this,
>say..called "BILL", then tiscali would allow me to upload it and I can work
>on it from there......WHICH APP SHOULD I USE, and what should i select to
>type in ..say,..."BILL"?????
>Cheers and ALL the Best......FRED C


In Dreamweaver you just type in the part that says Title.

In FrontPage you can go to Format, Background, General and then put
the title of the page there.

If you're working with just the code you put it between the
<Title>This is the title of my html page </Title> tags.

HTH

John


  Reply With Quote
Old 05-03-2004, 02:24 PM   #3
Chet
 
Posts: n/a
Default Re: Just want to write a title in HTML??

To create simple HTML you don't need a special app. Just a text editor.
Even if you decide to buy a program to create your page, some basic HTML
knowledge is a plus. I suggest "A Beginners Guide to HTML" located at
http://archive.ncsa.uiuc.edu/General...TMLPrimer.html

"fredcromer" <> wrote in message
news:40963f75$...
> When i signed up with TISCALI, you get a free webspace.....anyway, I
> activated it,gave it a name,...now I have to create a page(or 2,3), and
> UPLOAD it to Tiscali..........What I want to do is just be able to display

a
> title for the page, could anyone explain how i would go about doin' this,
> say..called "BILL", then tiscali would allow me to upload it and I can

work
> on it from there......WHICH APP SHOULD I USE, and what should i select to
> type in ..say,..."BILL"?????
> Cheers and ALL the Best......FRED C
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.675 / Virus Database: 437 - Release Date: 02/05/2004
>
>



  Reply With Quote
Old 05-03-2004, 02:43 PM   #4
Pepperoni
 
Posts: n/a
Default Re: Just want to write a title in HTML??

I just emailed you a plain HTML page called "BILL". rename to "index.html"
to use as your main page. If you would like me to write a more complete
page; upload your music and photos first, and send their names as well as
your web address. I can put it together in minutes from there. Also
willing to talk you through Front Page (if you upload the files first).

You can preview what I sent merely by dragging it into IE.

If you need help, send an IM name/number by email for communication. (ICQ,
MSN, AOLIM, Yahoo)

Pepperoni
<<wonderin' why Fred wants a page called "BILL">>>


"fredcromer" <> wrote in message
news:40963f75$...
> When i signed up with TISCALI, you get a free webspace.....anyway, I
> activated it,gave it a name,...now I have to create a page(or 2,3), and
> UPLOAD it to Tiscali..........What I want to do is just be able to display

a
> title for the page, could anyone explain how i would go about doin' this,
> say..called "BILL", then tiscali would allow me to upload it and I can

work
> on it from there......WHICH APP SHOULD I USE, and what should i select to
> type in ..say,..."BILL"?????
> Cheers and ALL the Best......FRED C
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.675 / Virus Database: 437 - Release Date: 02/05/2004
>
>



  Reply With Quote
Old 05-03-2004, 04:02 PM   #5
DeMoN LaG
 
Posts: n/a
Default Re: Just want to write a title in HTML??

"fredcromer" <> wrote in
news:40963f75$:

> When i signed up with TISCALI, you get a free webspace.....anyway, I
> activated it,gave it a name,...now I have to create a page(or 2,3),
> and UPLOAD it to Tiscali..........What I want to do is just be able to
> display a title for the page, could anyone explain how i would go
> about doin' this, say..called "BILL", then tiscali would allow me to
> upload it and I can work on it from there......WHICH APP SHOULD I USE,
> and what should i select to type in ..say,..."BILL"?????
> Cheers and ALL the Best......FRED C
>


This is a simple page that has the word "Hi" and a title of BILL:

<html>
<head>
<title>BILL</title>
</head>

<body>
Hi
</body>
</html>

--
website: http://www.demonlag.com
AIM: FrznFoodClerk
  Reply With Quote
Old 05-03-2004, 07:18 PM   #6
len gardener
 
Posts: n/a
Default Re: Just want to write a title in HTML??

g'dau demon,

just thought i'd read this post for curiosity, i have my own web page
already.

just that i noted there is no <p>preceding the Hi and no </p>after it,
is using these codes no longer necessary in html? just curious as i
don't use a page generator.

tia

len

snipped
--
happy gardening
'it works for me it could work for you,'

"in the end ya' gotta do what ya' gotta do" but consider others and the environment
http://members.optusnet.com.au/~gardenlen1/
  Reply With Quote
Old 05-04-2004, 02:59 AM   #7
DeMoN LaG
 
Posts: n/a
Default Re: Just want to write a title in HTML??

len gardener <> wrote in
news::

> just that i noted there is no <p>preceding the Hi and no </p>after it,
> is using these codes no longer necessary in html? just curious as i
> don't use a page generator.


<p> is a block level element denoting a new paragraph. </p> is no longer
"necessary". Since <body> is also a block level element, and I didn't want
any formatting or style, leaving out a <p> is acceptable. You'll notice
the HTML also doesn't contain any doctype declaration or character
encoding. Those are also required items.

--
website: http://www.demonlag.com
AIM: FrznFoodClerk
  Reply With Quote
Old 05-04-2004, 07:19 PM   #8
len gardener
 
Posts: n/a
Default Re: Just want to write a title in HTML??

thanks demon,

always looking to learn more.

len

snipped
--
happy gardening
'it works for me it could work for you,'

"in the end ya' gotta do what ya' gotta do" but consider others and the environment
http://members.optusnet.com.au/~gardenlen1/
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump