How to make a website? (software resources???)
Microcontrolled
Posts: 2,461
I have a domain name and a host server, what is a good program that I can design a website on and upload it to the server? I do not know HTML so I would like a GUI related program. I don't have web experiance, so some tips would also be good. I would like to have one like uController.com, btw.
Thanks,
Micro
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
You had better not start ANOTHER PropII thread.
Thanks,
Micro
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
You had better not start ANOTHER PropII thread.
Comments
learn html it is very easy should only take you a day to make a page like ucontroller.com. then learn php to do fun stuff.
http://www.w3schools.com/html/
http://www.w3schools.com/PHP/DEfaULT.asP
gui web page making programs are usually very expensive.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
www.seamonkey-project.org/
If you Google "seamonkey composer tutorial" or "seamonkey composer template" you will find lots of info to get started. A lot of universities have downloadable tutorials as PDFs for creating webpages with Seamonkey.
I use FireFTP (plugin for FireFox) for data transfer. Occasionally I use the FTP built into Dreamweaver, but I like being in control and it tries to "be helpful".
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Andrew Williams
WBA Consulting
WBA-TH1M Sensirion SHT11 Module
Special Olympics Polar Bear Plunge, Mar 20, 2010
I agree. It's nice to know some basic code for working on the web and you can get a fairly functional website up and running with just HTML (that's how it was done in the old days, after all). Libraries usually have books on HTML and other, more dynamic methods. Some browsers have a "View Source" tab that allows you to look at the code that generated the webpage you are looking at. Sometimes you can snag code from that to use as a starting point/template and fill in your own photo tags, etc.
Also, sometimes a "canned" website software package will not give you exactly what you want, so it's nice to have a feeling for how to tweak the code after it's been created by a package.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
use index.html if no active code(tags like <?php...?>
use .php if you want to use them
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
Post Edited (mctrivia) : 3/24/2010 1:41:57 AM GMT
What do you do if something the GUI did, doesn't look how you want it to? Being able to look at the code the GUI has generated and find where things aren't right, makes webpage design a lot easier.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
"powered by Propeller" domed stickers $1.50 - Find them here
Check out my Design and Technology project for my Higher School Certificate www.ecosureblog.net
The Sarah Myatt Fund - Help Sarah and Her Family Fight Quadriplegia HERE
I also like Google sites. It's easy to quickly get something up, although you certainly have to know some HTML to get around the odd ways the editor does things.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Powered by enthusiasm
One of the best $50 investments I've ever made...
I use this with all of my website as well as customer websites.
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Are you Propeller Powered? PropellerPowered.com
Visit the: PROPELLERPOWERED SIG forum kindly hosted by Savage Circuits.
1 - create a text document (add background, fonts, photos, links, et cetera)
2 - Save as type: HTML Document
3 - Use FileZilla to upload
4 - Melt chocolate chips with crunchy peanut butter and eat w/skim milk
Of course, I don't do anything *fancy* with my web pages and I did learn HTML, XHTML, CSS, blah, blah, blah - for personal use, I prefer quick, easy & cheap
If I had to suggest a book it would be this one, from Elisabeth Castro:
www.elizabethcastro.com/html5ed/
My experience suggests that very few of the advanced sites are built entirely by hand. Usually some type of "web site editor" is used. By "web site editor", I mean a program like Dreamweaver that not only allows for WYSIWYG editing of a page, but also helps manage the site in terms of links, navigation, site maps, etc. Usually, a combination of the GUI and "source view" is used. The GUI (or WYSIWYG) part to get the basic structure in place and much of the text editing and graphics laid in, and then going to "split" (half GUI, half source) or full source/code view to tweak things up. As an example, I rarely leave a table as Dreamweaver puts it in, especially if I come back and make changes. Dreamweaver, and most other packages, end up making a bit of a mess of the table code. It works, and displays OK, but can lead to problems in the future if you don't clean it up.
If you do a lot of web site work, you also tend to build a library of code "snippets" etc. You can either cut/paste them in, or the advanced editing systems have provisions for adding them as if they were part of the package to allow quick entry.
Don't use Microsoft Word. Every major package I'm aware of has a "clean up after Word" tool, and they have it for a reason. Word produces very messy and bloated HTML code.
Another option is to look at some of the Content Management Systems (CMS). DotNetNuke is one, but there are others. These let you create/edit a web site without having to write any HTML code.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
John R.
Click here to see my Nomad Build Log
I missed mentioning what SRLM did. I do love how Dreamweaver manages my templates. I can update my template for a site and Dreamweaver will automatically update all pages that use that template. Same thing for updating graphics, etc.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Andrew Williams
WBA Consulting
WBA-TH1M Sensirion SHT11 Module
Special Olympics Polar Bear Plunge, Mar 20, 2010
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Quit buying all those fixed voltage regulators, and·get an Adjustable Power Supply·for your projects!· Includes an LED testing terminal!
(no longer new) SD Card Adapter·Now available!· Add extra memory to your next Propeller project with ease!
P.S. - I liked the site the way it was originally...but keeping people interested means I needed to see beyond my own interests a bit.
As a side-note, many people start off with something like Wordpress (which I have also used) and have a blog-style website.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
·
I started with StartLogic.com and included in the the very modest hosting charges were all the tools needed to do both "fill in the blanks" page development as well as simple HTML editing, domain registration and mail server maintenance, etc.
Cheers,
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Tom Sisk
http://www.siskconsult.com
·
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
You had better not start ANOTHER PropII thread.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
You had better not start ANOTHER PropII thread.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
I'd second (or third or fourth) the idea that learning HTML+CSS is a good idea. Basic skills goes a long way.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Timothy D. Swieter, E.I.
www.brilldea.com - Prop Blade, LED Painter, RGB LEDs, 3.0" 16:9 LCD Composite video display, eProto for SunSPOT, PropNET, PolkaDOT-51
www.tdswieter.com
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
·
Bluehost.com has a great price and several great features such as being able to install the standard programs into your web site for blogging or wikis or CMSs. With Bluehost I believe you may want to have a bit of experience in what you are doing as the hosting account exposes a lot of controls. It could be daunting at first to a newcomer, but there is also a bluehost suppose forum and customer support services though I admit I have not used the phone support. I have used e-mail support and they helped me to resolve my issue quickly.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Timothy D. Swieter, E.I.
www.brilldea.com - Prop Blade, LED Painter, RGB LEDs, 3.0" 16:9 LCD Composite video display, eProto for SunSPOT, PropNET, PolkaDOT-51
www.tdswieter.com
OBC
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Are you Propeller Powered? PropellerPowered.com
Visit the: PROPELLERPOWERED SIG forum kindly hosted by Savage Circuits.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Don't click on this.....
Use the Propeller icon!!
You had better not start ANOTHER PropII thread.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map
i have included an example.txt to show how to use it.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
24 bit LCD Breakout Board now in. $24.99 has backlight driver and touch sensitive decoder.
If you have not already. Add yourself to the prophead map