Are you making a static website? If you want it to have more of a system you could some kind of CMS(content management system), I've used GetSimpleCMS before and it's a pretty quick way to quickly get into making a dynamic website with a steep learning curve, I'd say it's about 6X easier to develop for then Wordpress. What to do is you have at least one file called template.php (you don't need to know PHP) with your HTML code and add a special tag where you want it to insert the content. That's the bare minimum it's better to have the header and footer in separate files and use tags to include them into your template file(s), the advantage to that is that you can have different page templates with different layouts all sharing the same header and footer -- for example on my website(I use a different CMS but the concept is the same) I have the header and footer in their own files along with a home page template, a page template and templates for my gallery pages, when I want to change the html in the header or footer I only have to change one file instead of going though four or five copying and pasting. Another thing I liked about GetSimple is that you don't have to deal with setting up a database for it, it just saves it configuration in files.
You could install XAMPP, which is like a mini server on your computer that lets you work on thing's like Wordpress or GetSimple template on you computer locally without needing to constantly upload things onto a real server. An easy way to do it is to work on the template with some placeholder content, and then when you're done with the template you can upload to another installation of GetSimple on your server, then add the content. I tried to setup a GetSimple website with all of the content setup, and then copy the whole thing it to the server, it worked eventually but it took longer than I thought it would, because even though I followed the guide for migrating GetSimple there was a plugin for nested menus that I installed that was messing it up because it cached the old URLs from when it was still on my computer (when you are using something like XAMPP the URL of the site is "localhost" and even after I uploaded the site the menu links still linked back to localhost instead of the domain name) and it wasn't very apparent what was going on at first (stay away from that plugin "nested menus", or something, i18n looks better). I'm not saying you shouldn't try to do something like that but in my experience CMSs don't like being moved very much and retaliate by wasting your time :banghead:.
Well.. about my website, it full of Lorem Ipsum (gibberish Latin placeholder content) so maybe that messed it up, I'm American so when I actually add content it will be English. At first when I saw Ipsum I also thought it was some obscure foreign language too.
BTW do you use a text editor or something like Dreamweaver.
I hope that helps
Well... how should I explain
back in 90s (late 90s) I decided that I wanted to make a website so I started learning HTML. I remember I was reading this book, it was as easy as pie. Very soon I downloaded Dreamweaver and thought: "why should I learn any language when I can just put some tables here and there, and I'm done"
so that's what I did. later I was trying to do something a little bit more complex, I was trying to build a database... (I started a dating service, had 3,5 clients... it was an interesting experience
) well that didn't really work
as for mail form , long time ago I had this free website on a Russian server, so I just took their java code, placed it where needed and that's it. So I did everything in HTML, I didn't even try to explore PHP or anything else... I'm not even sure I have a clear understanding of how things actually work. I'm not saying it's hard, I just have never really had passion for programming... I found it interesting though
But it would be nice to know, if I want to consider myself as a web designer I probably should know. It's like for me a website is a toast and Dreamweaver is a toaster, I put bread in it and a toast comes out
I have never felt like I needed to know how the toaster works inside and out but, sometimes, when something goes wrong, it's better to know than not to know, but still... I might just make another toast or get another toaster.
I'll get one of my websites out with a proper domain in a day or 2, so you can see what I'm talking about....
now about PHP. I have a very static website, I will update it every now and then, when I have new stuff to show but it doesn't have to be updated depending on a user ... yet... so I don't really see point in PHP. PHP is like an action processing language, so if you have some if-s, it will process it and will create HTML output. Am I understanding it right?
as for server on the computer, Dreamweaver explained how to do it (Help function
), I did it... and it worked... I think
but honestly, at this point, it's much easier for me just to upload it to the server where the website is going to be on.
are you a programmer? a student? and why did you decide to have this language there... I presume it is because you want to see how it looks with content but you don't have content yet... is this the case?