Submit Your Article Forum Rules

Results 1 to 9 of 9

Thread: A college kid with a web site....

  1. #1
    Member
    Join Date
    Mar 2008
    Posts
    39

    A college kid with a web site....

    So im looking for some feedback on my site.

    Both ergonomic and design!

    Im a college student who felt like building a website and planned on making some money. Its tougher than I thought. But see what you think. Id love some feedback and suggestions!!

    Free Tennis Lessons, Videos, Tips, and Articles

    Thanks everyone

  2. #2

    Re: A college kid with a web site....

    That's an interesting website. Free tips, free articles, free videos. How do you make money? From Google Adsense? From selling subscribers e-mail address? Just wondering.

  3. #3
    WebProWorld MVP
    Join Date
    Jan 2008
    Location
    TN.
    Posts
    590

    Re: A college kid with a web site....

    This was just a real quick look though.



    * Your site is not displaying correctly in Firefox or Safari. It is displaying ok in IE.

    * You need to remove the Welcome Pop-up

    * You need to weed down your Styles and remove them from your code and put them in a external .css file.
    Evey time you change anything on a font it adds a new style to your code. Find what ones your using and move them to a external .css file.

    * Your description is to long.

    * You need to fix this.
    Code:
    <LINK REL="SHORTCUT ICON" HREF="favifile:///C:/Documents and Settings/vigliones/My Documents/My Web Sites/Topspin Sports Online Tennis Lessons/Favicon.icocon.ico">
    * Your Contact Us needs to be rethought. Maybe use a form for visitors to fill out and submit? You could also remove the GeneralQuestions.htm, ReportaProblem.htm

    *Do not name your links page 'links' or it will never get PR

    * Add alt tags to your images.




  4. #4
    Member
    Join Date
    Mar 2008
    Posts
    39

    Re: A college kid with a web site....

    Quote Originally Posted by jenteh View Post
    That's an interesting website. Free tips, free articles, free videos. How do you make money? From Google Adsense? From selling subscribers e-mail address? Just wondering.

    Ah, well I dont make much money right now. But yes google adsense brings in some revenue. Hopefully more down the road. Just trying to work out some kinks with everything right now.

    Would NEVER sell subscribers e-mail addresses though!

  5. #5
    Member
    Join Date
    Mar 2008
    Posts
    39

    Re: A college kid with a web site....

    Quote Originally Posted by amxfan View Post
    This was just a real quick look though.



    * Your site is not displaying correctly in Firefox or Safari. It is displaying ok in IE.

    * You need to remove the Welcome Pop-up

    * You need to weed down your Styles and remove them from your code and put them in a external .css file.
    Evey time you change anything on a font it adds a new style to your code. Find what ones your using and move them to a external .css file.

    * Your description is to long.

    * You need to fix this.
    Code:
    <LINK REL="SHORTCUT ICON" HREF="favifile:///C:/Documents and Settings/vigliones/My Documents/My Web Sites/Topspin Sports Online Tennis Lessons/Favicon.icocon.ico">
    * Your Contact Us needs to be rethought. Maybe use a form for visitors to fill out and submit? You could also remove the GeneralQuestions.htm, ReportaProblem.htm

    *Do not name your links page 'links' or it will never get PR

    * Add alt tags to your images.
    I REALLY appreciate you input. I have Removed pop up. And changed the links page to "tennis sites". and will be fixing the css file.

    I did have a few questions though..

    1) first and most importantly: Do you know why the links have white boxes around them other browsers?

    2) What is "wrong" with a long description?

    3) What do I need to fix about that code?

    4) Is there a problem with no alt tags?


    I really appreciate your suggestion, im very new to this and I am looking to learn more!

    THANKS

  6. #6
    WebProWorld MVP
    Join Date
    Jan 2008
    Location
    TN.
    Posts
    590

    Re: A college kid with a web site....

    Quote Originally Posted by topspinsports View Post
    1) first and most importantly: Do you know why the links have white boxes around them other browsers?
    It looks like you have a white background set or padding in your styles. Also not all web browsers read and interpret code the same way. Some are stricter then others and not very forgiven. May I suggest this code?

    Code:
    <td><Div align="center" id="Toplinks">
    <ul>
      <li><a href="http://www.topspinsports.com/">Home</a></li>
      <li><a href="http://www.topspinsports.com/Lessons/Home.htm">Lessons</a></li>
      <li><a href="http://www.topspinsports.com/StrategyAndTactics/Home.htm">Strategy and Tactics</a></li>
      <li><a href="http://www.topspinsports.com/Training/Home.htm">Training</a></li>
      <li><a href="http://www.topspinsports.com/Video%20analysis/Home.htm">Video</a></li>
      <li><a href="http://www.topspinsportstennisforum.com/">Forum</a></li>
      <li><a href="http://www.topspinsports.com/Interviews/Interviews.htm">Interviews</a></li>
      <li><a href="http://www.topspinsports.com/AskAPro/AskAPro.htm">Ask-A-Pro</a></li>
      <li><a href="http://www.topspinsports.com/ProoftheMonth/Pros.htm">Meet the Pros</a></li>
      <li><a href="http://www.topspinsports.com/Tips/Home.htm">Quick Tips</a></li>
      <li><a href="http://www.topspinsports.com/SignUp.htm">Sign Up</a></li>
      </ul></Div></td>
    and insert this into your style sheet ".css file"

    Code:
    #Toplinks a {
        text-decoration: none;
        color: #FFFFFF;
        display: inline;
        margin-right: 5px;
        margin-left: 5px;
    }
    #Toplinks {
        font-family: "Times New Roman", Times, serif;
        font-size: 14px;
        font-style: italic;
        border: 0px solid #000000;
        height: auto;
        width: 868px;
    }
    #Toplinks li {
        display: inline;
        padding: 0px;
    }
    #Toplinks li.current {
        background-color: #597947;
    }
    #Toplinks a:hover {
        background-color: #003333;
    }
    #Toplinks ul {
        background-color: #597947;
        margin: 0px;
        padding: 0px;
    }
    Quote Originally Posted by topspinsports View Post
    2) What is "wrong" with a long description?
    Meta description should be about 25 words or 150-200 characters long.

    Quote Originally Posted by topspinsports View Post
    3) What do I need to fix about that code?
    You are hosted on Go Daddy right? Your site root is something like Public_html. Your code points to a part of the drive you do not have access to. 'At least I hope it does'

    Quote Originally Posted by topspinsports View Post
    4) Is there a problem with no alt tags?
    No there is not but adding alt tags can increase your keyword density and also improve your ranking on search engines like Yahoo who put weight on alt tags.

  7. #7
    Member
    Join Date
    Mar 2008
    Posts
    39

    Exclamation Re: A college kid with a web site....

    excelllent. This is great feedback.

    I fixed the mozilla, safari problem!!!! thanks soooo much

    I will begin using better .css coding from this point on but to change every page now might be a litttle crazy and time consuming.


    ALSO looking for more suggestion from other people too!!! All critizism welcome

  8. #8
    WebProWorld MVP
    Join Date
    Jan 2008
    Location
    TN.
    Posts
    590

    Re: A college kid with a web site....

    Just a quick note

    The next site you make.
    Make a template or use server side includes this will make changing or updating your site a breeze.

  9. #9
    Member
    Join Date
    Mar 2008
    Posts
    39

    Re: A college kid with a web site....

    Yeah I have 7 different templates actually....but yes...next time around I know i will change a lot of things!!

Similar Threads

  1. Not sure my college is good for Programming
    By zhestko in forum Web Programming Discussion Forum
    Replies: 0
    Last Post: 03-06-2008, 07:18 AM
  2. Podcasting - A New College Major?
    By Joe in forum Syndication and Social Media Discussion Forum
    Replies: 0
    Last Post: 11-10-2006, 04:06 PM
  3. College student bests DHS effort
    By dutter in forum Accessibility and Usability Forum
    Replies: 0
    Last Post: 08-03-2006, 06:53 PM
  4. Amazing what you can learn in college
    By wenwilder in forum Internet Security Discussion Forum
    Replies: 13
    Last Post: 10-04-2004, 12:03 PM
  5. How can my college improve it's site?
    By JMcT in forum Introductions
    Replies: 1
    Last Post: 09-17-2004, 04:42 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •