Developing Website with Free Software - XP Compatible

  • Thread starter Thread starter ehrenfest
  • Start date Start date
AI Thread Summary
For developing a website without relying solely on HTML, various free software options are available. While coding by hand is recommended for learning and better control over design, tools like SeaMonkey and Mozilla Application Suite can assist in website creation. Microsoft FrontPage is suggested for beginners, despite mixed opinions, while Adobe Dreamweaver is noted for advanced features, though it comes at a cost. Freeware options like aceHTML are also mentioned as solid alternatives. Utilizing a text editor for coding is encouraged, and extensions for browsers like Firefox can enhance learning HTML. However, it's acknowledged that for complex sites, using an Integrated Development Environment (IDE) can be beneficial. Understanding the underlying code is crucial for troubleshooting and effective site management. Additionally, frameworks like ExtJS can help create rich client interfaces for more sophisticated web applications.
ehrenfest
Messages
2,001
Reaction score
1
I am trying to develop a website and I am getting sick of writing everything in HTML. Is there some free software package that I can use instead? MS word works with html files but there has got to be something better.

I have Windows XP.
 
Computer science news on Phys.org
Code by hand. It's not hard, and the websites will look much better than coming out of MS Word.

Otherwise there are a great many programs out there, many of which are free. As I don't use anything but a text editor I'm in a bad position to help here.
 
Is SeaMonkey an example of a program that I can use to design a website? Has anyone used that?

What about the Mozilla Application Suite?
 
Last edited:
Code by hand as CRGreathouse said... but if you are a beginner then use Microsoft Frontpage if you really have to (I don't really like Frontpage). Use Adobe Dreamweaver for advanced server side implementations.
 
Yeah, seamonkey is one (I've had the impression seamonkey pretty much is what mozilla appl suite has in this respect ... someone correct/verify please). aceHTML is also freeware for win which at least personally have found to be a solid editor and prefer over frontpage and like. Coding by hand is sure "preferable" in learning the ropes and all that, but once it gets "big and complex enough" doing it in an IDE for the sole management of the whole project is in my book a good idea.
 
I'd recommend coding by hand using notepad or something similar. Try a few firefox extensions like https://addons.mozilla.org/en-US/firefox/addon/655 to help learn how html works.
 
But there's no way you could make a website as nice, say as PF, coding by hand, right? Look how many different tables and buttons and fields there are on this page? Do you really think someone wrote this by hand?
 
Well yeah the images would require some design software, but the code is largely based on vBulletin, with tweaks that could be made by hand. Yeah sure I'd also recommend something like Dreamweaver but it's expensive, and you can become lazy and too dependpent on just dragging and dropping. If something goes wrong, its much better to actually know the code and how it works, rather than just generate it. Just my $0.02.
 
Something that is a little beyond straight HTML is extjs which is a javascript framework for creating rich client interfaces (you can use it to create a site like PF).
 
Back
Top