Basic website building and latest ways to do things advice sought
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Basic website building and latest ways to do thing...
Basic website building and latest ways to do things advice sought
13-11-2009 9:07 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
What are the current tools for this? I currently write HTML manually, I would like to add a FORM but that usually needs scripts on the server ( I'm just wanting to avoid putting my email addy online for scammers to harvest) - are basic scripts like this available to my level of service?
I'm not a novice but have been away from the internet for some time and lost touch with the latest ways of doing things.
thanks in advance
David
Re: Basic website building and latest ways to do things advice sought
13-11-2009 3:18 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: Basic website building and latest ways to do things advice sought
16-11-2009 3:50 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Above all have fun with it.
I've now graduated onto php/mysql content management which uses free software from Joomla.org but you need to learn the ropes first and that sort of server space isn't available on your broadband package as far as I know.
Re: Basic website building and latest ways to do things advice sought
17-11-2009 9:34 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
It's also worth learning something like jQuery, and to avoid Flash etc, unless it's essential.
Re: Basic website building and latest ways to do things advice sought
17-11-2009 9:48 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator


Top end spanner is of course Dreamweaver™ but there are plenty of good cheap 'spanners' around and some are free. Don't use Word HTML though, it's a mess.

This is supposed to be pretty good for starters if you are running Windows http://www.coffeecup.com/free-editor/ but there's loads to choose from if you look around.
Re: Basic website building and latest ways to do things advice sought
17-11-2009 11:38 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
With regard to the specific problem of concealing an email address. I don't think there's a perfect solution; even things like captcha get cracked. One way to cut down on the risk of harvesting is to use an encrypted email address with a bit of Javascript to decode it. There are online resources that will generate the code for you, including <a href="http://hivelogic.com/enkoder/form">this enkoder</a>.
I'm assuming you have access to homepages. Plusnet homepages includes a <a href="http://www.plus.net/support/webspace/cgi_php/cgi_scripts.shtml">simple email form script</a>. You can encrypt the line
<INPUT TYPE="HIDDEN" NAME="recipient" VALUE="e-mail address" />
in a similar way (e.g. using the advanced enkoder form, just replace the line with the generated script).
Incidentally, the line
<INPUT TYPE="TEXT" SIZE="XX" MAXLENGTH="XX" NAME+"form field name" />
should read NAME=
Getting slightly more complicated, you could read up on excluding bad bots and scrapers using an htaccess file.
Gabe
Re: Basic website building and latest ways to do things advice sought
17-11-2009 1:44 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: Basic website building and latest ways to do things advice sought
17-11-2009 1:44 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Dreamweaver although it can write code - some of it is rather poor. but it is a great web site management tool - i.e if you change a file name, it updates all other occurrences on the site etc. and much more
And avoid MS Word, Excel, Publisher, etc - they produce horrendous and unmaintainable code.
Re: Basic website building and latest ways to do things advice sought
17-11-2009 1:51 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: pierre_pierre this site is hand written, cant find any thing wrong with it http://peterchild.co.uk/info1/about.htm#about look down page for info on the HTML
Some basic mistakes with html there - <P><h2>some text</h2>more text</P>
rather than:
<h2>heading text</h2>
<p> block text</p>
and poor use of <P ALIGN="CENTER"> rather than use css to control it
Re: Basic website building and latest ways to do things advice sought
17-11-2009 3:17 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
See Screen Shot.
Re: Basic website building and latest ways to do things advice sought
19-11-2009 12:51 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Gary: CSS if done properly, should have absolutely 0 effect on a scren reader, as it should read the content not the presentation layer.
Re: Basic website building and latest ways to do things advice sought
19-11-2009 2:23 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
But to brows the web I use Internet Explorer v6 & Firefox v3.5.2 Running in Sandboxed see screen shot above.
I find that a lot of sites that use CSS make the site for jo blogs, not for people who have a Disability like me, so yes if CSS is done properly Screen Readers can Read the text on the page, but a lot don't do sites properly including PlusNet, try using a Text Reader on PlusNet's Home Page or PlusNet's Accessibility Page, you can Download Help Read from my archive here for Free.
The new Address for the Big Archive is: http://www.bigarchive.co.uk
[Edit]
Help Read is for Windos only.
[Edit]
From Bobby
Quote All images should contain a short alternative text description that represents the function of the graphic. This includes images used as image maps, spacers, bullets in lists, graphical buttons, links, and images used to present math equations.
When creating alternative text, aim for a functional label based on the context in which it is used rather than a visual description. A good test to determine if alternative text is useful is to imagine reading the document aloud over the telephone. What would you say upon encountering this image to make the page comprehensible to the listener?
My Bold, images should be avoided were possible.
Re: Basic website building and latest ways to do things advice sought
20-11-2009 2:16 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: Midnight From Bobby
Quote All images should contain a short alternative text description that represents the function of the graphic. This includes images used as image maps, spacers, bullets in lists, graphical buttons, links, and images used to present math equations.
When creating alternative text, aim for a functional label based on the context in which it is used rather than a visual description. A good test to determine if alternative text is useful is to imagine reading the document aloud over the telephone. What would you say upon encountering this image to make the page comprehensible to the listener?
My Bold, images should be avoided were possible.
I fail to see how images should be avoided?
The quote above which I presume is where you draw your justification from states that you should provide alternative text, which helps the user who can not see the image understand what the image is, not that you shouldn't use images at all...
Re: Basic website building and latest ways to do things advice sought
20-11-2009 4:25 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: Basic website building and latest ways to do things advice sought
20-11-2009 9:08 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Use the following code to load css stylesheets ?
<link href="/inc/tables.css" rel="stylesheet" type="text/css" media="aural" />
<link href="/inc/nextservice.css" rel="stylesheet" type="text/css" media="braille" />
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Help with my Plusnet services
- :
- Everything else
- :
- Basic website building and latest ways to do thing...