How can I make my contact us page a downloadable PDF

Sorry for what may be a simple task but I am not sure how to create a pdf of my contact page at http://glasgow-dentists.co.uk/contact-us/
I would like patients to be able to download and print the page as I will be adding directions.
Also I am considering putting in an email function so they can email themselves or someone else the pdf.
Would be great if it could remain clickable somehow for the map.
Appreciate any quick pointers to where I could learn how to do this.
Also if there is a specific reader/software I need please let me know.
I am using Windows 7
thanks,
Colin

Are you wanting the form in a PDF format, or just create a PDF of the directions to your business in PDF form and post that. Assuming the latter, you just create your document in any editor, word processor, or layout program and print it to a PDF. Then simply put up the PDF and add a link to it. If you want the form information you get into other issues due to some license restrictions on forms. You can create a form that can be printed and the data sent to you with no problem. The form data (FDF file) can be imported into the form and printed for your use, or added to a database. If you create a PDF of the web page (probably should work directly with the section of the page rather than the whole screen), you can then add the form fields to that PDF (I tried and the automated adding did not work, but your form is simple and manual addition is simple). Add a button for the submit button and send the FDF file to your web site (or e-mail if you prefer with mailto:<address>, but be aware that the e-mail does not always work for clients and is also not secure). If you select the PDF file submission you get into requirements for Reader Rights and the license restrictions (I am not sure how much this has changes in AA XI -- you would have to read the license agreement -- but it would not be acceptable in a business under previous versions).

Similar Messages

  • How can I make my contacts & messages private/confidential?

    How can I make my contacts and messages private?

    I don't think you can passcode protect your contacts. Have you thought of giving the numbers a false name/heading? Maybe something like Wal-Mart or pizza take out (or other nonsensical names having nothing to do with the actual contact)? If you want the numbers hidden regardless, I doubt that it's possible.
    EDIT
    Another idea is to have multiple contact sets and restore the set you want to use/have on your phone at any one time. There are contact backup apps to do this...one I use is called My Contacts Backup (free) which backs up your contacts to a file which you then email to yourself. Make multiple backups and then restore the set (after first deleting the previous set using the "delete contacts" option within the app) you wish to have on your phone. Restoring contacts involves tapping on the contact backup file (in VCard or CSV format) which will then restore them on the device.
    Have you tried one of the apps that may help? Search the AppStore for "private contacts"...there seem to be a few free ones out there.

  • How can I make photos on web page enlarge with mouse-over?

    How can I make photos on web page enlarge with mouse-over?

    There's a couple of recent topics which mention MagicZoom and JQZoom...
    https://discussions.apple.com/message/17438064#17438064
    https://discussions.apple.com/message/17440847#17440847
    A very simple method is shown here...
    https://discussions.apple.com/message/17440847#17440847

  • HT202879 How can I make labels 30 per page?

    How can I make labels 30 per page?

    Using what application on what Mac running what version of OS X?

  • How can I make Adobe Reader 9 open for incoming PDFs instead of Acrobat 5.0?

    How can I make Adobe Reader 9 open for incoming PDFs instead of Acrobat 5.0?

    Hi,
    Assuming that you have Reader 9.3.4 already installed on your machine, you can try the following to make Reader 9.3.4 as the default PDF opening application:
    1. Right click on any PDF on your system and click on the "Open With" Option in the context menu that appears. In case you get another submenu, click on Chose Program in that menu. (In case you do not see any "Open With" option, then hold down the Shift key and right click on the file)
    2. Click on Browse button in the dialog that appears, and select Reader 9. Make sure that you select the checkbox for "Always use the selected program to open this kind of file"
    3. Click on OK.
    This will make Adobe Reader 9 as the default viewer for all PDFs on your system.

  • How can I make the image number biger in a PDF presentation?

    How can I make the original image number, biger, located on the lower part of the picture in a PDF presentation so people don't have to zoom in 50% or 100% in order to see number of each picture in a automate PDF presentation. Thank you for your help

    When a document is signed, the signer has the option of locking the document. The links won't be active if the document is locked, so to avoid this, instruct the signer not to lock when signing.

  • How can I make my Contact Form send info to my email?

    Greetings! I have below a contact form that i have creaed with some help but I can't seem to make it send the information to my email address after it is submitted. That is my most important issue right now.
    A secondary issue is, can I make it so once this form is submitted it send the info to my email without doing a page redirect?
    Thanks in advance!

    Ok what about this code located at www.ybcreations.com/ContactTest.php?
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'BestMarketingNames Inquiry';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
              'fullname' => 'Please enter a Name to proceed.',
              'email' => 'Please enter a valid Email Address to continue.',
              'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- Contact Form Designed by James Brand @ dreamweavertutorial.co.uk -->
    <!-- Covered under creative commons license - http://dreamweavertutorial.co.uk/permissions/contact-form-permissions.htm -->
              <title>Contact Form</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="Billy testing/ContactForm.css" rel="stylesheet" type="text/css" />
              <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="Billy testing/validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    </head>
    <body onload="MM_preloadImages('Billy testing/x.png')">
    <div id="formWrap">
    <h2>We appreciate your business</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="ContactTest.php" method="post" id="comments_form">
              <div class="row">
              <div class="label">Your Name</div> <!--end .label -->
              <div class="input">
              <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>"/><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Your Email Address</div> <!--end .label -->
              <div class="input">
              <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>"/><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Comments</div> <!--end .label -->
              <div class="input">
              <textarea id="comment" name="comment" class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?></textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
              </div><!-- end. input -->
              </div><!-- end .row -->
        <div class="submit">
        <input type="submit" id="submit" name="submit" value="Send Message" />
        </div><!-- end .submit-->
        </form>
         <?php else: ?>
    <p style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#255E67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    funtion ourRedirect(){
              location.href='contact.html'
    </script>
    <?php endif; ?>
    </div><!-- end #form-->
    </div>
    <p> </p>
    <!-- end formwrap -->
    </body>
    </html>

  • How can I make Mozilla Firefox Start Page use Google search instead of SearchCompletion search?

    I have just upgraded Firefox 9 to 10. I noticed when I fire up Firefox at the Start Page and enter a query at the search bar, the resulting pages are from SearchCompletion engine.
    How do I make Google search engine as the default engine at the Firefox Start Page ... like it has always been?
    Seems like one of those irritating changes that happens when upgrading versions...

    Do a malware check with some malware scan programs. You need to scan with all programs because each program detects different malware. Make sure that you update each program to get the latest version of the database before doing a scan.
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked and Searches are redirected to another site

  • How can I make Facebook my home page using Firefox? With IE8 I had Facebook as my home page so it automatically took me to Facebook, I can't figure out how with Firefox!

    When I open my browser now, I am on Google. I want to make Facebook my home page so I do not have to search for it.

    http://support.mozilla.com/en-US/kb/How+to+set+the+home+page

  • How can I make a booklet in pages?

    I am trying to make a booklet in pages, and i am sure this has been asked before. What is the best way to do this without having to download another program to help out?

    Hi Jake,
    I don't know that there is a "best way" to do this in Pages.
    Several variables will have an effect on the procedure:
    What size paper will you print on?
    How many booklet pages will fit onto a single side of that piece of paper?
    How many pages will your booklet have (including front and back covers)?
    For a 4.25" x 8.5" booklet, the Catering Brochure provides a good starting point.
    The default Catering brochure (above) has 2 letter size pages, each in a separate section (as is always the case for a Page Layout document.
    The top section holds the brochure's outside pages (4 and 1), back cover on the left, front cover on the right.
    The bottom section holds the inside pages (2 and 3), inside left on the left, inside right on the right.
    The Pages button in the Toolbar offers a choice of four types of page to add the the document: Additional copies of the cover or inside layout, a Text page or a Blank page.
    Each inserts two brochure/booklet pages. Add two for both sides of a second sheet of paper.
    Note that you're not restricted to using a "Text" page for two pages of nothing but text.
    For an eight page booklet, the pages are laid out as follows:
    8 (bc)  1 (fc)
    2         7
    6         3
    4         5
    Document pages 1 and 2 are printed on opposite faces of a letter sized sheet.
    Document pages 3 and 4 are printed on opposite faces of a second sheet.
    Catering is one of only two 'single fold' brochures on the Brochure page of the Template Chooser in Pages. The main difference between this one and the Landscape Brochure is in the treatment of the gutter between the two pages on each sheet of paper. Catering treats the pages as separate, with an empty gutter running between them. Landscape runs an illustration across the gutter, which is fine for the inside and outside pages of a four page brochure, but not great for booklets made with more than a single sheet of paper.
    The advantage to "another program to help out" is that it frees you to compose the booklet pages in the order they are to appear in the booklet, and as full size pages, then let the 'helper' application impose those pages onto sheets of paper in the order needed to comprise the booklet. Either of the applications noted by Peggy will do that job.
    I haven't used one, but my booklets (concert programs) are all the same number of pages (8) and all have the pages in the same, or a very similar order. Generally, I'll produce a pdf for each pair of pages, print a sample of each and staple them in the correct order for the booklet, then take the files and the sample to the local copy shop and let then do the printing, folding and stapling.
    Regards,
    Barry

  • Safari screen size?  How can I make it fill the page?

    For some reason today, my page width in Safari has reduced - I've obviously hit a button somewhere! How can I fill the width without blowing up the text to a huge size? Any answers would be helpful.. thanks

    Worked it out.....

  • How can I merge several docs in Pages into 1 pdf doc.?

    I have created several pages in Pages that will become one report. I have sent each page in an email as a pdf, as well as shared in iworks.com. How do I merge all the pages into one pdf?

    Look at the several pdf readers and annotation Apps. I think several will allow what you want to do.

  • How can I make a contact sheet in Bridge CC?

    I am working on a Mac OSX 10.9.1. I saw the output module did not ship with Bridge CC, and downloaded the files from Adobe to install it. When I finished and clicked on "output", the set up was blank. I followed the directions without success. I went back to the beginning, but now, cannot find "extensions" in the Bridge CC folder. Can anyone help me to create a contact sheet?
    Mac OS: /Library/Application Support/Adobe/Bridge CC Extensions

    Read this one, has screenshots of directories where you should be.  http://forums.adobe.com/message/6032961#6032961?tstart=0#6032961

  • If I expand a web page using Control +, how can I make sure the next page I go to on that site will also be in expanded mode, and the 1st page will still be in expanded mode when I come back to it? This is automatic in Chrome browser.

    Right now the pages always revert to small size. It's a hassle having to expand them every time to make them readable for my vision-impaired eyes.

    Try the [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint] add-on, it gives greater control over the zoom options.

  • How can i make iphone contacts the iCloud ones

    Is there a way to make my IPHONE 5 contacts the correct ones / updated / newer on ICLOUD.COM. I´ve already deleted all ICLOUD Contacts because they were outdated and not useful. I´ve recovered my contacts from a Backup that I´ve of my IPhone and they are the ones I will like to have on ALL my contacts databases ( Mac Book Air, IPhone, IPad, ICloud, etc. ).

    Helped a lot ... and best of all ... IT WORKED !!!
    https://discussions.apple.com/docs/DOC-4841

Maybe you are looking for

  • Can I create more than one bookmarks toolbar?

    I'd like to set up several toolbars -- one for myself & my favorite sites .. one for my kids for their school needs ... and one for my husband. Can this be done? Will all three show up at the top?

  • External HDD Not Appearing

    Hi All, I'm trying to connect a Windows HDD to my Mac via a USB - SATA cable as the windows laptop has died. The disk has booted fine but does not show up in finder or Disk Utility. Any ideas why its not appearing? Could it be the adapter I'm using a

  • Creating an Alert on a Parameter

    Hello, I have a parameter that is defined as a range and I want to limit the user to only enter or select up to 4 enteries, how do I set up an alert to accomplish this?  I have tried HasUpperBound with no success, any help will be greatly appreciated

  • Pass userId into SessionEventListener

    Since my application required to set context for VPD, I need to pass userId from web tier into SessionEventListener to store into VPD context in database. What's the correct way to do that? I tried a solution I found in this forum by using ThreadLoca

  • Ugly code - teach me :-)

    Hi, I have the follow code in my Session Facade: Software os = (Software)em.createNamedQuery("Software.findById").setParameter("softwareId", operatingSystem).getSingleResult();                 hardware.setOperatingSystem(os);Now, calling getSingleRes