472,780 Members | 1,690 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

critique requested

Hi all --

A client has hired me to, among other things, optimize her web site
for search engine submission. So being the dutiful SEO geek that I
am, I went through and optimized each and every page of the site,
including a complete recoding of the homepage which she botched.

Now after all of this work, she tells me that she wants to keep the
home page as it is. I've gone on record telling her that I feel that
she won't get the results she is expecting if she keeps the page as
is, to no avail.

So I am seeking outside opinions. The site is geared toward women so
I would like to get as many female opinions as possible -- but men are
welcome to respond too.

Please note that I am NOT asking for a critique of the core layout.

All I want to know is which page is a. better optimized and b. more
visually appealing.

http://www.b-tone.com
http://www.b-tone.com/indexa.html
http://www.b-tone.com/indexb.html

Please reply either here or via email at we*******@wkdesign.com

Thanks!

Cynthia Turcotte
Jul 20 '05 #1
7 2199
Cynthia Turcotte wrote:
Hi all --

<snip>

Read: http://www.cs.tut.fi/~jkorpela/usenet/xpost.html

--
David Dorward http://dorward.me.uk/
Jul 20 '05 #2
Cynthia Turcotte wrote:
Please note that I am NOT asking for a critique of the core layout.
Though, since this is a discussion newsgroup rather than a help desk,
you might get comments on that and all other aspects of your site anyway.
All I want to know is which page is a. better optimized and b. more
visually appealing.

http://www.b-tone.com
http://www.b-tone.com/indexa.html
http://www.b-tone.com/indexb.html


Well, first of all, none of these have valid HTML. They're missing
doctypes and charset attributes, for starters, and have an enormous
number of syntax problems. For instance, you insert a "TM" sign as a
proprietary character from a vendor character set instead of using the
standards-compliant Unicode number for it. There's a lot of
nonstandard, proprietary JavaScript too, such as a "link" that attempts
to bookmark your page (which doesn't work in Mozilla, but it has a
perfectly good bookmark function in the browser user interface where it
belongs). There's also one of those really obnoxious "no right click"
scripts, which unfortunately *does* work in Mozilla (there's a Bugzilla
entry seeking a configuration setting to disable this sort of thing).
Another script generates a "mailto" link that includes space characters,
which are invalid in URIs unless encoded as %20. The whole page is in a
fixed-pixel-width table, which is bad for adaptability to different
resolutions and display situations. Your stylesheet sets all the font
sizes to pixel sizes, which is also bad for adaptability.

None of this has anything to do with your question, but as I said, this
is a discussion newsgroup, not a help desk; you'll get whatever people
decide to throw in, and if some of it happens to answer your question,
that's purely coincidental. :)

--
== Dan ==
Dan's Mail Format Site: http://mailformat.dan.info/
Dan's Web Tips: http://webtips.dan.info/
Dan's Domain Site: http://domains.dan.info/

Jul 20 '05 #3
>Well, first of all, none of these have valid HTML. They're missing
doctypes and charset attributes, for starters, and have an enormous
number of syntax problems. For instance, you insert a "TM" sign as a
proprietary character from a vendor character set instead of using the
standards-compliant Unicode number for it. There's a lot of
nonstandard, proprietary JavaScript too, such as a "link" that attempts
to bookmark your page (which doesn't work in Mozilla, but it has a
perfectly good bookmark function in the browser user interface where it
belongs). There's also one of those really obnoxious "no right click"
scripts, which unfortunately *does* work in Mozilla (there's a Bugzilla
entry seeking a configuration setting to disable this sort of thing).
Another script generates a "mailto" link that includes space characters,
which are invalid in URIs unless encoded as %20. The whole page is in a
fixed-pixel-width table, which is bad for adaptability to different
resolutions and display situations. Your stylesheet sets all the font
sizes to pixel sizes, which is also bad for adaptability.

None of this has anything to do with your question, but as I said, this
is a discussion newsgroup, not a help desk; you'll get whatever people
decide to throw in, and if some of it happens to answer your question,
that's purely coincidental. :)


I do appreciate all of the technical input, but the important question
was not answered -- if you had to pick one, which of the three pages
is more visually appealing?

Thanks again,

Cynthia

Jul 20 '05 #4
Cynthia Turcotte <ct******@cfl.rr.com> wrote:
I do appreciate all of the technical input, but the important question
was not answered -- if you had to pick one, which of the three pages
is more visually appealing?


Not to sound like a daft one, but why are you asking questions about
visual stimulus in an *authoring* newsgroup?
Alexander
--
___________________ ______________________ _____________________________
| |
http://shelter.nu/ | alex at shelter . nu | http://shelter.nu/xsiteable/
___________________|______________________|_______ ______________________
Jul 20 '05 #5
Daniel R. Tobias wrote:
Another script generates a "mailto" link that includes space characters,
which are invalid in URIs unless encoded as %20.


Then your browser/mail client should encoded it as %20.
--
Chris Lambert (http://web.trout-fish.org.uk/)
"I am Homer of Borg. Prepare to be ...ooooh donuts!"
Jul 20 '05 #6
On Fri, Sep 12, Cynthia Turcotte inscribed on the eternal scroll:
Well, first of all, none of these have valid HTML.
[...]
resolutions and display situations. Your stylesheet sets all the font
sizes to pixel sizes, which is also bad for adaptability.


I do appreciate all of the technical input, but the important question
was not answered


Some of the *important* questions _were_ answered. This is, after
all, an _HTML_ authoring group. Given a discrepancy between your
personal priority and the group's charter, I know which I think should
win, and I would say that no matter who was setting the question, not
excluding myself.

If you wanted to know "is my tag soup visually appealing?", I'm more
than a little sceptical that this was the best place to ask it.

The curious thing is that, in my experience, once the graphic artist
has produced an appropriate display (tag soup and all), then someone
who understands web design principles can almost always produce
something that looks almost indistinguishable on the originally-
intended platform, but is much better engineered for the WWW.

Can we take the building analogy? You have a cardboard cut-out model
of your intended building. At the slightest hint of a breeze, the
model would collapse. But instead of offering it for critique amongst
visual stylists, you've asked in a building engineer's forum, and
naturally they're going to tell you what building engineers are
required to tell you: that the disabled toilets are useless on the
sixth floor with no lift access above the fifth, the earthquake and
hurricane resistance requirements aren't met, and fire evacuation
arrangements are completely inadequate. Its only claim to fame is
visual appeal.

good luck (you may need it)
Jul 20 '05 #7
Chris Lambert wrote:
Daniel R. Tobias wrote:
Another script generates a "mailto" link that includes space characters,
which are invalid in URIs unless encoded as %20.


Then your browser/mail client should encoded it as %20.


It might, as an error-correction step, but the *author* should have
properly encoded it in the first place.

--
== Dan ==
Dan's Mail Format Site: http://mailformat.dan.info/
Dan's Web Tips: http://webtips.dan.info/
Dan's Domain Site: http://domains.dan.info/

Jul 20 '05 #8

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

Similar topics

19
by: TC | last post by:
Are there any good sites or forums for a web critique? I went to alt.html.critique and it's pretty dead.
9
by: bowsayge | last post by:
Inspired by fb, Bowsayge decided to write a decimal integer to binary string converter. Perhaps some of the experienced C programmers here can critique it. It allocates probably way too much...
34
by: Andrew Clark | last post by:
Hello all, Wow, has it ever been a long time since I posted anything to this group. I don't keep as current as I used to anymore; I only lurk from time to time when I have a spare moment. I am...
188
by: christopher diggins | last post by:
I have posted a C# critique at http://www.heron-language.com/c-sharp-critique.html. To summarize I bring up the following issues : - unsafe code - attributes - garbage collection -...
39
by: Eric | last post by:
There is a VB.NET critique on the following page: http://www.vb7-critique.741.com/ for those who are interested. Feel free to take a look and share your thoughts. Cheers, Eric. Ps: for those...
17
by: Joe | last post by:
I'm a long-time lurker, so I know what to expect! Can someone please look at this and make appropriate comments? http://members.aardvark.net.au/grakat/temp/ It's only four pages, and it should...
5
by: Asfand Yar Qazi | last post by:
Hello, Could you please critique this code please? It's for creating sine/cosine/tan ratio lookup tables. Any ideas on how to improve it in terms of efficiency, any problems forseen in its...
61
by: warint | last post by:
My lecturer gave us an assignment. He has a very "mature" way of teaching in that he doesn't care whether people show up, whether they do the assignments, or whether they copy other people's work....
0
by: Rina0 | last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
0
by: erikbower65 | last post by:
Using CodiumAI's pr-agent is simple and powerful. Follow these steps: 1. Install CodiumAI CLI: Ensure Node.js is installed, then run 'npm install -g codiumai' in the terminal. 2. Connect to...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: kcodez | last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

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.