Webdesigners - Are You Or Are You Not!

are you or are you not a web designer ?

  • I have no idea what HTML nor CSS is.

    Votes: 0 0.0%

  • Total voters
    24

yahia

New Member
Messages
338
Reaction score
0
Points
0
And I say webDesigner, not webDeveloper, e.g. php, asp...
The web is primarily HTML
;D
 

lambada

New Member
Messages
2,444
Reaction score
0
Points
0
I'm a mix really so I can't vote.

I create validating layouts, sometimes by hand and I use tables with some css where I feel necessary. What would that fall into?
 

yahia

New Member
Messages
338
Reaction score
0
Points
0
do you know when you validate an html without an encoding set on the w3 validator?
well, let's just say that would fall into web tentatively designer ;D
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
When I want to make a site, I just use dreamweaver.
 

Spartan Erik

Retired
Messages
6,764
Reaction score
0
Points
0
A mix of the 3rd and 4th option. I do CSS and HTML, but I don't care about validation (as long as it works, that's all that matters)

But hey, at least I organize my code unlike many people out there who are extremely unorganized.
 

Zenax

Active Member
Messages
1,377
Reaction score
4
Points
38
I have the same oppinion as Spartan Erik here! As long as my code works then thats all that matters to me.

However one problem is that I use IE so it doesnt always work in other browsers!
 

yahia

New Member
Messages
338
Reaction score
0
Points
0
yeah, "as long as it works"...
you're the kind of people that complain about non-IE browsers who do not show "correctly" (like on IE) your webpage?
 

kryptonyte

New Member
Messages
216
Reaction score
0
Points
0
I kinda mix the 2nd and 4th options. I use dreamweaver to create the initial site and then recode the majority using CSS. After that I run the entire site through a W3C checker fixing whatever shows up error or warning. Once I'm done with the HTML layout I add in PHP coding to make the site dynamic and easier to keep updated. Thats pretty much it.

@Zenax: If you keep your site 100% W3C compliant you will never have that problem. ;)
 
Last edited:

Zenax

Active Member
Messages
1,377
Reaction score
4
Points
38
I find that slightly insulting.....


Yes I do test my code in other browsers to make sure it works, and my code is fgairly organized, however if it works in most browsers, then im ok with it.


Regards,
Zenax
 

yahia

New Member
Messages
338
Reaction score
0
Points
0
What I do is testing in both mozilla's and opera.
when it's OK, I go check IE with no surprises to fix the mess he makes ; )
 

Spartan Erik

Retired
Messages
6,764
Reaction score
0
Points
0
yahia said:
yeah, "as long as it works"...
you're the kind of people that complain about non-IE browsers who do not show "correctly" (like on IE) your webpage?

Actually FF is my default browser and I code to it's liking.. I'm the kind of person who complains about it not displaying properly in IE :drool:
 

The_Magistrate

New Member
Messages
1,118
Reaction score
0
Points
0
I am most definitely number 4. I make sure my sites validate from the beginning. None of this "build it, then check it..." I check it, then build it, then check it again!

I always start with this template:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title> </title>
    <style type="text/css" media="screen">
      @import url( style.css );
    </style>
 </head>

  <body>

  </body>
</html>
 

yahia

New Member
Messages
338
Reaction score
0
Points
0
Spartan Erik : that makes us friends then =D

as for The_Magistrate, that is a good idea, and I do that too from some months already, it's very helpful.
Besides, I have added more stuff between <head>

What I would advise you is to quit xhtml1strict.take a step back and start using HTML 4.01 strict. that's the best thing one can do. Before I decided to, I read over and over this document.
And what encouraged me also, is that the xhtml1 spec is heavily based on the html 4.01 one. it's said there.

see ya
 

blackroselove

New Member
Messages
244
Reaction score
0
Points
0
i normanlly work in DW then edit the source and code by cleaning it up in notepad or a text editor. i also use css style sheets and also do basic php really. but prefer html working.... easy :)
 

yahia

New Member
Messages
338
Reaction score
0
Points
0
you shouldn't be comparing html to php, they do not serve for the same purpose ; )
 

blackroselove

New Member
Messages
244
Reaction score
0
Points
0
True.. but i dont understand much of php so i dont now really what its abilites are.. have to see what they are when i get into it this summer
 
Top