forums
new posts
donate
UER Store
events
location db
db map
search
members
faq
terms of service
privacy policy
register
login




UER Forum > Private Boards Index > Tech Talk > My website (Viewed 1580 times)
Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
My website
< on 2/19/2005 10:08 PM >
Reply with Quote
Posted on Forum: UER Forum
Heres my NYCP webpage. Almost done. http://nycp.agentskelly.net It has a virtual chat room. Check it out. Post your comments here.




"Hey Fat Dave. <--Period"
Jedstah 


Location: Moncton, NB, CanaDUH.
Gender: Male
Total Likes: 0 likes


i never thought id see the day, when church kids choose the hardcore way.

 |  | 
Re: My website
< Reply # 1 on 2/19/2005 11:47 PM >
Reply with Quote
Posted on Forum: UER Forum
it sucks.




You shake my hand, say “pleased to meet you.” Look me in the eye, I don’t believe you. TUI, as long as I’m still alive. I live despite you. Realize I’m not one of your kind, I’m nothing like you.
Sinister Crayon 


Location: Colorado
Gender: Male
Total Likes: 3 likes




 |  | 
Re: My website
< Reply # 2 on 2/19/2005 11:56 PM >
Reply with Quote
Posted on Forum: UER Forum
Hey, It's his first site! Constructive criticism would be better. My first site was worse. The Chat room was cool, although it was a bit laggy.




Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 3 on 2/20/2005 5:12 AM >
Reply with Quote
Posted on Forum: UER Forum
Thanks. Im still doing work on it. I wasnt really going for looks. I was just trying to get the point accross. It is my first site and first time coding with HTML.




"Hey Fat Dave. <--Period"
stealthy 


Total Likes: 1 like


You got a problem bro?

 |  | 
Re: My website
< Reply # 4 on 2/20/2005 9:00 PM >
Reply with Quote
Posted on Forum: UER Forum

  • The large images on the top of the page are terrible. (a) They aren't good for Dial-up / some DSL users; (b) You can get the same effect by using <h1></h1> tags. See note (a).
  • Again on the images: You ought to actually /write/ the text out, as opposed to showing it in images (again, not good for dial-up / some DSL users; also, if you want to minimise your bandwith use, then an all-images site is not a good option). See note (b).
  • Java Chat (well, Java in general) is extremely disgusting. Enough said.
  • The "random image" isn't really random. See note (c).


Note a)-
Put this in the <head> </head> section of all your pages:

<link href="style.css" type="text/css" rel="stylesheet" />


And create a file named "style.css", and put the following in it:

/* CSS Document */
/* Style.css */

h1#navlink {
color: #000000;
}

(You can replace #000000 with the HEX equivilant of whatever colour you desire.)

And when 'coding' your navigation bar, use this format:

<h1 id="navlink"><a href="./default.html">Default Page</a></h1>


Note b)-
You can use CSS (Cascading Style Sheets) to style your page. Like so:

/* CSS Document */
/* Style.css */

#sometext {
/* Attributes here */
color: #FFF;
}


And for the text you desire to be styled, one would use the following format:

<p id="sometext">
(This text will appear as red)
</p>


Note c) -
If you compiled Apache with the PHP Module, then you can use the following script:

<?php
$num = mt_rand(1,2);
switch($num) {
case '1':
$img = "<img =\"image1.png\" alt=\"This is a random image!\" />";
break;

case '2':
$img = "<img =\"image1.png\" alt=\"This is a random image!\" />";
break;
}
?>




Nosferatu Von 


Location: Ancaster
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 5 on 2/21/2005 2:07 PM >
Reply with Quote
Posted on Forum: UER Forum
You might wanna get Dreamweaver or Pagemill or something... not Word or whatever that other Microsoft one is (I cant think of it at the moment). WHen I went there, there wasn't an index page, it just took me to the long list of files.




Seems your Phenomena is a Phenoma-NOT.
stealthy 


Total Likes: 1 like


You got a problem bro?

 |  | 
Re: My website
< Reply # 6 on 2/21/2005 2:43 PM >
Reply with Quote
Posted on Forum: UER Forum
Posted by Lord Kahos
You might wanna get Dreamweaver or Pagemill or something... not Word or whatever that other Microsoft one is (I cant think of it at the moment). WHen I went there, there wasn't an index page, it just took me to the long list of files.


It really doesn't matter which editor you use. Dreamweaver is good for code completion, live preview, etc. Notepad will suffice for a strictly html website.

As for the index page problem, all one has to do is place a file named ".htaccess" (without the quotes) and put the following in it (yes it is case sensitive):


DirectoryIndex default.html

And change default.html to whatever you want Apache to refer to as your index page.

By the way, the Microsoft (ultra-suck, I might add) editor is called FrontPage. Big waste of money.




Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 7 on 2/21/2005 3:58 PM >
Reply with Quote
Posted on Forum: UER Forum
What do I put infront of ".htaccess"?




"Hey Fat Dave. <--Period"
stealthy 


Total Likes: 1 like


You got a problem bro?

 |  | 
Re: My website
< Reply # 8 on 2/21/2005 3:59 PM >
Reply with Quote
Posted on Forum: UER Forum
Posted by CD74
What do I put infront of ".htaccess"?


Nothing; If you do put something in front of it, Apache will consider it to be another file and will NOT parse its instructions.




Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 9 on 2/22/2005 8:32 PM >
Reply with Quote
Posted on Forum: UER Forum




"Hey Fat Dave. <--Period"
Nosferatu Von 


Location: Ancaster
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 10 on 3/9/2005 3:06 PM >
Reply with Quote
Posted on Forum: UER Forum
No go, bro.




Seems your Phenomena is a Phenoma-NOT.
Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 11 on 3/11/2005 2:19 PM >
Reply with Quote
Posted on Forum: UER Forum
works for me, try the new URL http://ny-cp.net




"Hey Fat Dave. <--Period"
Sinister Crayon 


Location: Colorado
Gender: Male
Total Likes: 3 likes




 |  | 
Re: My website
< Reply # 12 on 3/11/2005 7:43 PM >
Reply with Quote
Posted on Forum: UER Forum

Sorry the page your trying to view is currently down for maintenance, Please check back in 1-2 hours

- Webmaster -



That's what I get.




Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 13 on 3/12/2005 1:09 AM >
Reply with Quote
Posted on Forum: UER Forum
O really....Ill have to take that down.




"Hey Fat Dave. <--Period"
Xanadu 


Location: Las Vegas NV
Gender: Male
Total Likes: 0 likes




 |  | 
Re: My website
< Reply # 14 on 3/12/2005 1:58 PM >
Reply with Quote
Posted on Forum: UER Forum
Ok if ya want to bypass that screan fo now go to http://nycp.agentskelly.net/index2.html This version of the site is outdated tho.




"Hey Fat Dave. <--Period"
UER Forum > Private Boards Index > Tech Talk > My website (Viewed 1580 times)


Add a poll to this thread



This thread is in a public category, and can't be made private.



All content and images copyright © 2002-2024 UER.CA and respective creators. Graphical Design by Crossfire.
To contact webmaster, or click to email with problems or other questions about this site: UER CONTACT
View Terms of Service | View Privacy Policy | Server colocation provided by Beanfield
This page was generated for you in 242 milliseconds. Since June 23, 2002, a total of 739687715 pages have been generated.