ok this is my 3rd web design question in half an hour because I am confusing myself and going off on tangents!!….
Im going to be as direct and simple as possible.
I need a site which will take user profiles, similar to how like a dating site does, except not a dating site!
People will need to verify themselves before entering infomation in their profile.
People searching or browsing profiles will also need to verify themselves although they will have the option of wether or not they have a profile, where as the users wont.
Their will be two catagories for people, people with profiles and people who browse the profiles… (I cnt say much more but I promise it makes sense!)
There will need to be also, something like yahoo answers has with different topics, so different catagories emerge and are chosen for different users….
I know nothing about how to start, the info available is overwhelming and I dont want to stuff it up.
How do u tell the dif btween simple html and hard?
The reason I ask is the price difference…. I read that simple html is easy therefore costs less but incorprating things like flash are harder…
Which would mine fall under?
Simple HTML can only be used to design simple web sites (i.e., those without "smart" features like a log-in and profile database). For more complex features (like what you describe) you will probably need to incorporate a server-side database (like SQL or MySQL) and a server-side scripting language to interface with the database (like PHP, ColdFusion, or ASP). You will not need Flash (to do what you describe, at least); however, to make a particularly good site you will definitely need to use CSS (to style your HTML), and you will probably also end up using JavaScript and XML (to streamline your "smart" features).
In short, to make a good site that has the features you described, you will need HTML to form the skeleton of the visible site, CSS to stylize the HTML so that it looks good, a database (like SQL or MySQL) to hold the user information, and a server-side scripting language (like PHP) to perform data-handling functions.
You can learn about HTML (http://www.w3schools.com/html) and CSS (http://www.w3schools.com/css/) from the W3C Schools, and you can learn about PHP from PHP.net (http://www.php.net/).