473,378 Members | 1,104 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

markup for a printable form

I have an entry form for a baking contest.

http://www.tsmchughs.com/events/contest/entry

It is not an http form; it is meant to be printed out, filled out, and
physically submitted with the entry (that is, the soda bread). I
didn't know how to do it. I decided to offer plain text and MS Word
variants. I then inserted the plain text version inside a <pre>
element for the html version. Is there a more meaningful way to mark
up the form?

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #1
4 3333
Brian <us*****@julietremblay.com.invalid-remove-this-part> wrote:
http://www.tsmchughs.com/events/contest/entry

It is not an http form; it is meant to be printed out, filled out,
and physically submitted with the entry


So don't use form markup - it would just mislead the user, who might
try to fill it out and look for a submit button.

You could use some simple tables, with borders, and with empty cells
reserved for the data to be filled out.

You might consider offering plain text, Word, and PDF versions too,
since they would let the user fill out the form on computer and produce
better quality as compared with handwritten text. But it's not a big
issue, and for a small amount of data, just printing the document and
writing with a pen is probably easiest.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html

Jul 20 '05 #2
Jukka K. Korpela wrote:
Brian wrote:
http://www.tsmchughs.com/events/contest/entry

it is meant to be printed out, filled
out, and physically submitted with the entry
So don't use form markup - it would just mislead the user,


Of course. I used <pre> instead.
You could use some simple tables, with borders, and with empty
cells reserved for the data to be filled out.
That's an idea I hadn't thought of.
You might consider offering plain text, Word,
Already done.
and PDF versions
I don't have the software for that.
too, since they would let the user fill out the form on computer
and produce better quality as compared with handwritten text. But
it's not a big issue, and for a small amount of data, just printing
the document and writing with a pen is probably easiest.


Thanks for your input.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #3
On Mon, 19 Jan 2004 17:30:58 GMT, Brian
<us*****@julietremblay.com.invalid-remove-this-part> wrote:
I have an entry form for a baking contest.

http://www.tsmchughs.com/events/contest/entry

It is not an http form; it is meant to be printed out, filled out, and
physically submitted with the entry (that is, the soda bread). I didn't
know how to do it. I decided to offer plain text and MS Word variants. I
then inserted the plain text version inside a <pre> element for the html
version. Is there a more meaningful way to mark up the form?

If it were me, I'd just format a plaintext version and save it as .txt as
a lot of users don't have Word and don't want to d/l the reader. Except I
don't know if Mac users can handle txt.

Is there a reason you can't make a print stylesheet for this page which
will just print out the instructions and the form?
Jul 20 '05 #4
Neal wrote:
Brian wrote:
http://www.tsmchughs.com/events/contest/entry

I decided to offer plain text and MS Word variants. I then
inserted the plain text version inside a <pre> element for the
html version. Is there a more meaningful way to mark up the form?
If it were me, I'd just format a plaintext version and save it as
.txt


Already done. (I did mention that in the op! There it is above: "I
decided to offer plain text and MS Word variants. I then inserted the
plain text version...." That and the MS Word versions are linked from
the .html version.
Is there a reason you can't make a print stylesheet for this page
which will just print out the instructions and the form?


I can do that, and *did* to that. The print stylesheet is already
there, the .html version is already there. The question is *how* do I
mark up the form. At the moment, I used the text version inside a
<pre> element, e.g.,

<PRE>
Name __________________________________________________ ______

Address___________________________________________ ___________

City__________________________________State_____Zi p__________
</PRE>

Is there a better way? Jukka Korpela suggested the possibility of
using a table. I think, given the simplicity, I'll probably stick with
what I've got.

--
Brian (follow directions in my address to email me)
http://www.tsmchughs.com/

Jul 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Daniel Alexandre | last post by:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi there, I'm using the following method in my program to check whether a message received is printable or not and to strip the non-printable...
38
by: Jukka K. Korpela | last post by:
As well all know, valid markup is important... but when trying to find a convincing modern argument in favor of this, I found pages like http://www.htmlhelp.com/tools/validator/reasons.html which...
17
by: CJM | last post by:
....When I say 'form' I'm talking about a conventional paper version, as opposed to a <form>. I'm building a web-based application which needs to be able to create Invoices/Advice Notes/Order...
3
by: Rod | last post by:
I want to produce some reports designed for printing. (like you can in Access). I can't find the equivalent, what's the accepted way of achieving something similar. many thanks Rod
10
by: CJM | last post by:
....When I say 'form' I'm talking about a conventional paper version, as opposed to a <form>. I'm building a web-based application which needs to be able to create Invoices/Advice Notes/Order...
8
by: Sam Halliday | last post by:
i want to have a function which can print the printable form (possibly a 2 character string) of a character on UNIX like systems. for example, if i were to pass the ascii value '\3', i would like...
5
by: **Developer** | last post by:
How do I know if the value in a KeyEventArgs is printable? Basicacally, in KeyUp I'd like to know if the character is printable, as opposed to say, a backspace. I suppose I could check...
7
by: active | last post by:
I want to remove all non-printable characters - including nulls. I could extend the following by adding as many printable characters as I can think of. But I wonder if there isn't something...
4
by: sklett | last post by:
I've developed an ERP application that we use internally and works quite well. I receiving more and more requests from users to print various transactions, order forms, search results, etc. I...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.