473,396 Members | 1,792 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Review my website again

Hello, I had posted my website about 2 weeks ago asking for comments
of how I could better my website. We have worked very hard to
organize our website and have made changes to our shopping cart. We
tried to make it a little more user friendly. Please review my site
and let me know what you think. I may have a little links that might
not work, but when I find it, I try to fix it right away. We had
frames, and I've taken them all away.

Iris
ENIShop Fragrances & Gifts
http://www.enishop.com
Jul 20 '05 #1
7 2286
Iris601 wrote:
http://www.enishop.com


- Always keep a link to the homepage on any given sub-page.
- Don't completely switch the colors from front- to sub-page
- Make sure there's no dead links like
http://www.enishop.com/mens/B_Men.html
- Have a professional design the page, or keep it to minimalist design.
The background, logo etc. look too amateurish. No problem except you're
trying to make people trust you to give their money to you.
- Get rid of hobby page signs like counter and link exchange
- You need to give your personal information (name, location) in the
"Contact" page.

--
Google Blogoscoped
http://blog.outer-court.com
Jul 20 '05 #2
Iris601 wrote:
Hello, I had posted my website about 2 weeks ago asking for comments
of how I could better my website. We have worked very hard to
organize our website and have made changes to our shopping cart. We
tried to make it a little more user friendly. Please review my site
and let me know what you think. I may have a little links that might
not work, but when I find it, I try to fix it right away. We had
frames, and I've taken them all away.

Iris
ENIShop Fragrances & Gifts
http://www.enishop.com


no doctype specified
missing images
depracted markup (font tags, proprietary attributes)

<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
don't use frontpage if you want to avoid problems

--
Brian
follow the directions in my address to email me

Jul 20 '05 #3
"Philipp Lenssen" <in**@outer-court.com> wrote in message news:<bj************@ID-203055.news.uni-berlin.de>...
Iris601 wrote:
http://www.enishop.com


- Always keep a link to the homepage on any given sub-page.
- Don't completely switch the colors from front- to sub-page
- Make sure there's no dead links like
http://www.enishop.com/mens/B_Men.html
- Have a professional design the page, or keep it to minimalist design.
The background, logo etc. look too amateurish. No problem except you're
trying to make people trust you to give their money to you.
- Get rid of hobby page signs like counter and link exchange
- You need to give your personal information (name, location) in the
"Contact" page.


Anything positive?
Jul 20 '05 #4
Brian <us*****@mangymutt.com.invalid-remove-this-part> wrote in message news:<2Y26b.269107$cF.84610@rwcrnsc53>...
Iris601 wrote:
Hello, I had posted my website about 2 weeks ago asking for comments
of how I could better my website. We have worked very hard to
organize our website and have made changes to our shopping cart. We
tried to make it a little more user friendly. Please review my site
and let me know what you think. I may have a little links that might
not work, but when I find it, I try to fix it right away. We had
frames, and I've taken them all away.

Iris
ENIShop Fragrances & Gifts
http://www.enishop.com


no doctype specified
missing images
depracted markup (font tags, proprietary attributes)

<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
don't use frontpage if you want to avoid problems


Thank you for your response...it's needed. When you are referring to
the doctype, are you referring to the <meta name...> that you are
mentioning below. I've heard of a doctype, but I'm not familiar with
that.

Could you let me know what images that you came across so that I can
fix those? I will be also adding where the user can click on the
picture and they see an enlarged picture as well. I know how to do
that as a popup window, but the last time I did that, the pop-up
window filled up the entire screen, instead of 25% of the screen.

Ok, what is a depracted markup? What is wrong with my font tags?

I am a seasoned Visual Basic/Access Programmer of 5 years now, but I'm
striving to understand HTML, CGI/Perl, XML, etc.

Iris
Jul 20 '05 #5
> Thank you for your response...it's needed. When you are referring to
the doctype, are you referring to the <meta name...> that you are
mentioning below. I've heard of a doctype, but I'm not familiar with
that.
A doctype is a DTD declaration. For example, for HTML 4.0
Transitional, you have this at the head of the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Ok, what is a depracted markup? What is wrong with my font tags?


Deprecated means, to be avoided if you are working according to a
standard. All use of <FONT> tags is deprecated as of HTML 4.0. If you
want to mark a font face or colour or size, use Cascading Style Sheets
(CSS); preferably a master file separate from the HTML files (such as
"main.css"), or as part of the markup in the HTML file. For example,
for a whole paragraph in red, you do:

<p style="color: #FF0000">

For just one word in red, you do:

<p>
This word is in <span style="color: #FF0000">red</span>
</p>

To link a stylesheet page (such as "main.css") to your HTML files,
type this in each of your HTML files:

<link rel=stylesheet href="main.css" type="text/css">
Jul 20 '05 #6
> Thank you for your response...it's needed. When you are referring to
the doctype, are you referring to the <meta name...> that you are
mentioning below. I've heard of a doctype, but I'm not familiar with
that.
A doctype is a DTD declaration. For example, for HTML 4.0
Transitional, you have this at the head of the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Ok, what is a depracted markup? What is wrong with my font tags?


Deprecated means, to be avoided if you are working according to a
standard. All use of <FONT> tags is deprecated as of HTML 4.0. If you
want to mark a font face or colour or size, use Cascading Style Sheets
(CSS); preferably a master file separate from the HTML files (such as
"main.css"), or as part of the markup in the HTML file. For example,
for a whole paragraph in red, you do:

<p style="color: #FF0000">

For just one word in red, you do:

<p>
This word is in <span style="color: #FF0000">red</span>
</p>

To link a stylesheet page (such as "main.css") to your HTML files,
type this in each of your HTML files:

<link rel=stylesheet href="main.css" type="text/css">
Jul 20 '05 #7
sp*******@writeme.com (Heathen Dawn) wrote in message news:<31**************************@posting.google. com>...
Thank you for your response...it's needed. When you are referring to
the doctype, are you referring to the <meta name...> that you are
mentioning below. I've heard of a doctype, but I'm not familiar with
that.


A doctype is a DTD declaration. For example, for HTML 4.0
Transitional, you have this at the head of the page:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
Ok, what is a depracted markup? What is wrong with my font tags?


Deprecated means, to be avoided if you are working according to a
standard. All use of <FONT> tags is deprecated as of HTML 4.0. If you
want to mark a font face or colour or size, use Cascading Style Sheets
(CSS); preferably a master file separate from the HTML files (such as
"main.css"), or as part of the markup in the HTML file. For example,
for a whole paragraph in red, you do:

<p style="color: #FF0000">

For just one word in red, you do:

<p>
This word is in <span style="color: #FF0000">red</span>
</p>

To link a stylesheet page (such as "main.css") to your HTML files,
type this in each of your HTML files:

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


Alright, thanks a lot for the detailed information.

Iris
http://www.enishop.com
Jul 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

18
by: K_Lee | last post by:
I documented the regex internal implementation code for both Tcl and Python. As much as I like Tcl, I like Python's code much more. Tcl's Stub interface to the external commands is confusing to...
4
by: Dave Patton | last post by:
I'd appreciate any feedback on http://www.elac.bc.ca/ particularly in regards to the stylesheet. http://www.elac.bc.ca/style.css only has one line: @import "elac.css"; so the 'real stuff' is in:...
18
by: Ben Hanson | last post by:
I have created an open source Notepad program for Windows in C++ that allows search and replace using regular expressions (and a few other extras). It is located at...
3
by: Larry Serflaten | last post by:
I am planning to share a Cards.DLL out on Planet Source Code and GotDotNet. But before I send it out to the public I would like to get a peer review to be sure it works as intended, and to avoid...
89
by: Randy Webb | last post by:
There is an updated version of the FAQ at: <URL: http://jibbering.com/faq/newfaq/> The changes/modifications to date are: 2.3 Corrected "span" to "spam". 2.3 Updated with a note about not...
6
by: Amir Michail | last post by:
Hi, I would appreciate a review of this site: http://forwardingtree.com Is it self-explanatory? Would you use it? Are there any issues with copyright? Are there any issues with putting...
2
by: Amir Michail | last post by:
Hi, I would appreciate a review of this site: http://forwardingtree.com Is it self-explanatory? Would you use it? Are there any issues with copyright? Are there any issues with putting...
1
by: OutdoorWorldAdventures | last post by:
I have been trying to do any type of form that my web viewers can submit a picture and story for review to be submited to my website. I use Yahoo Business as my host and everything. I even tried...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.