====== HTML ====== [[http://www.akademia.ch/info/html/]] ===== Doctypes ===== http://htmlhelp.com/tools/validator/doctype.html one of my favourites: ====== MailTo Syntax ====== source: http://www.ianr.unl.edu/internet/mailto.html * PLEASE NOTE: It is recommended that you use a process other than MailTo handle the e-mail process from your web site. * If you do use MailTo, please encode the included e-mail address(s) to reduce the spam for that address. One routine to assist encoding and e-mail address is available at: http://www.ianr.unl.edu/email/encode/ The MailTo command can do more than enter a single e-mail address in the "Send To" field while activating your e-mail program. It can also: Feature Syntax Address message to multiple recipients , (comma separating e-mail addresses) Add entry in the "Subject" field subject=Subject Field Text Add entry in the "Copy To" or "CC" field cc=id@internet.node Add entry in the "Blind Copy To" or "BCC" field bcc=id@internet.node Add entry in the "Body" field body=Your message here Within the body use "%0A" for a new line, use "%0A%0A" for a new line preceded by a blank line (paragraph), ====== Envoyer un email avec un formulaire et mailto ====== [[http://www.akademia.ch/info/html/mailform.html]] ====== Uploader ====== Pour faire un upload (téléchargement) d'un fichier vers le serveur: # the action attribute refers to a server-side script which is capable of handling submissions containing forms or, technically speaking, being in multipart/form-data format; as explained below, don’t even dream about using mailto: URLs in action attributes, in this context or otherwise! # it has the attribute method="post" # it has the attribute enctype="multipart/form-data" # it contains a field http://www.tizag.com/phpT/fileupload.php doc pour php ====== formulaires / forms ====== [[forms]] ====== Frames / iframes ====== [[Frames / iframes]] ====== Image button ====== ====== mailto html syntax ====== [[http://www.ianr.unl.edu/internet/mailto.html]] MailTo Syntax August 15, 2003 The MailTo command can do more than enter a single e-mail address in the "Send To" field while activating your e-mail program. It can also: Feature Syntax Address message to multiple recipients , (comma separating e-mail addresses) Add entry in the "Subject" field ?subject=Subject Field Text Add entry in the "Copy To" or "CC" field ?&cc=id@internet.node Add entry in the "Blind Copy To" or "BCC" field ?&bcc=id@internet.node Add entry in the "Body" field ?&body=Your message here Notes: " " (beginning and ending double quotes) are necessary if any spaces are used Use the ? (question mark) and only one "?", when providing any entry beyond e-mail address Some examples, with actual HTML Code included, follow: Simple MailTo MailTo with Multiple Recipients MailTo with Subject MailTo with a Copy MailTo with a Blind Copy MailTo with message already started in Body MailTo with multiline message in Body IMPORTANT NOTE: This feature will NOT work with all e-mail programs, in which case the body information appears as a single line. Features may be used in combination MailTo with Subject, One Recipient and Two Copies Remember to use only one ? (question mark), when providing multiple entries beyond e-mail address ====== Redirection/rediriger (HTML pur) ====== ====== Rendez-vous automatique ====== [[http://www.akademia.ch/info/html/rvauto.html]] pour envoyer un email avec des propositions de rendez-vous ====== Table CharCode ====== [[http://www.akademia.ch/info/html/chars.htm]] ====== wrap long lines ====== ; pre { white-space: pre-wrap; /* css-3 */ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ } ;