Starting Developing a Site (where to start)

admin

Administrator
Staff member
Hi, i have been into programming with C++ and pascal for a while, and now want to move on to creating my own website.<br />
<br />
I want to know what i should now be learning. I dont want it to be in pure html, with just pictures and text, i want to use something, that will be moving, ie. an intro, (some quick animation)<br />
<br />
Any help for a newbie would be appreciated.<br />
<br />
Thanks<!--content-->First start with HTML, it is the 'foundation' of all websites.<br />
<br />
Then if you want movement, there are dhtml scripts around that provide some basic movement, of go for flash. Flash is the most 'moving' technology around, once you master it.<!--content-->Start with HTML and post it in the 'review' forum. Ask for constructive critisism. <br />
What's wrong with "pure HTML" anyway? <br />
It's how a web page is laid out. I don't know any source that doesn't begin with <html> and end with </html>.<br />
Want a real challenge? Write something to an XHTML specification. Then ask for a review.<br />
Have fun!<!--content-->Freestyler, with all due respect to those who know everything *g*...<br />
<br />
Creating a web page is, in some respects, no different than creating a programme.<br />
<br />
First you have to figure out why you want the site and what kind of computers (and people) will be wandering over to visit it. It's like figuring out why you need to write the programme and who's going to be using it.<br />
<br />
From there, you can decide what you'd need to include, what you'd like to have, and what definitely stays on the drawing board. It's like storyboarding a game programme. <br />
<br />
As to *how* things get done, <!-- m --><a class="postlink" href="http://www.webmonkey.com">http://www.webmonkey.com</a><!-- m --> has some neat tutorials on how to get started, both in HTML and Javascript. I think it's even got a tutorial on how to create animation effects with Javascript, but don't quote me on it. *g*<br />
<br />
Once you get the page looking neat and tidy, as the others have said, drop us a note in the "Reviews" section and we'll do what we can to help.<br />
<br />
*lol* You've already learned the hardest part, you know. Programming isn't easy. Best of luck to you.<br />
<br />
Peg<!--content-->A lot of good advice has been given above, but let me give mine here: :P <br />
<br />
- html is the building block. a good understanding is required<br />
- dhtml makes html elements dynamic (well doh !! :o ) and can provide for a very nice interaction with the user. dhtml is really nothing more than being able to manipulate existing elements (objects) in html using a client side script (usually javascript).<br />
<br />
based on this I would say html followed by javascript. By personal preference is two books by danny goodman:<br />
'the javascript bible' and 'the dhtml reference'.<br />
<br />
For graphics intensive display with lots of movements then flash is the way to go. Flash is like creating frame-by-frame movies even just for smaller effects. I suggest you consider this option also as it does expand the user interface, but be preparred for some learning curve (it is not as simple as html and javascript). <br />
<br />
Finally, once you are up and running you will probably soon find out that offering static pages (w/ or without flash) will soon be a nightmare to update, maintain and besides the differences in browsers makes it much easier if you can serve some pre-determined html via a server side language. here your options are perl, php, asp etc. A good place to start would be perl or php with a mysql database. perl is really the most usefull, but php is somehow intuatively easier to understand (with your programming background, maybe perl is the way to go).<br />
<br />
If you have html/javascript/(dhtml)/flash and perl+mysql knowledge you can go far...<br />
My recommodation is to get a good html/javascript book to fast take you through the concept of html elements, object oriented language scripting and how to manipulate elements using client side scripting. Then move on to perl/php to and finally introduce flash if you still is interested.<br />
<br />
Good luck.<!--content-->...perl is really the most usefull...Perl is excellent, I use it for backend administration tasks (although I am no where near as proficient as the resident guru, Kevin). However, to say Perl is the most useful is quite an interesting statement. I cannot actually think of anything Perl can do that PHP cannot. I don't want to start a Perl versus PHP war as I am a supporter of both. But, to be honest, I think if you are just starting out then you could just learn PHP and accomplish anything you want to (with regards to serverside processing). The need to learn both is probably diminished.<!--content-->I was just trying to think of which language a C++/pascal programmer would find easiest, and my assumption was perl. I do agree php is quite good.<!--content-->
 
Back
Top