ftp.stuarthgollinger.com Open in urlscan Pro
67.225.250.117  Public Scan

URL: https://ftp.stuarthgollinger.com/
Submission: On August 24 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

POST

<form action="" id="cta-small-form" method="post">
  <div class="input-box mt-4 ">
    <input type="text" placeholder="Full Name" name="name" id="name" required="" class="form-control">
  </div>
  <div class="input-box mt-4">
    <input type="email" placeholder="Email" name="email" id="email" required="" class="form-control">
  </div>
  <div class="input-box mt-4">
    <input type="text" placeholder="Phone Number" name="phone" id="phone" required="" class="form-control">
  </div>
  <div class="input-box mt-4 ">
    <button type="submit" class="default-btn" id="cta-small-form">
      <i class="bx bxs-paper-plane"></i> Send Message </button>
  </div>
</form>

POST /process.php

<form action="/process.php" method="POST">
  <div class="row">
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="text" name="name" id="name" class="form-control" required="" data-error="Please enter your name" placeholder="Your Name">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="email" name="email" id="email" class="form-control" required="" data-error="Please enter your email" placeholder="Your Email">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="text" name="phone" id="phone_number" required="" data-error="Please enter your number" class="form-control" placeholder="Your Phone">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="text" name="subject" id="msg_subject" class="form-control" required="" data-error="Please enter your subject" placeholder="Your Subject">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-12 col-md-12">
      <div class="form-group">
        <textarea name="msg" class="form-control" id="message" cols="30" rows="6" required="" data-error="Write your message" placeholder="Your Message"></textarea>
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-12 col-md-12">
      <button type="submit" class="default-btn"><i class="bx bxs-paper-plane"></i>Send Message<span></span></button>
      <div id="msgSubmit" class="h3 text-center hidden"></div>
      <div class="clearfix"></div>
    </div>
  </div>
</form>

POST /detailform.php

<form action="/detailform.php" method="POST">
  <div class="row">
    <div class="col-lg-12 col-md-12">
      <div class="form-group">
        <input type="text" name="name" id="name" class="form-control" required="" data-error="Please enter your name" placeholder="Your Name">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="email" name="email" id="email" class="form-control" required="" data-error="Please enter your email" placeholder="Your Email">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <input type="text" name="phone" id="phone_number" required="" data-error="Please enter your number" class="form-control" placeholder="Your Phone">
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <select name="services" id="services" class="form-control">
          <option value="">Services</option>
          <option>Resume Writing Servicess</option>
          <option>Book Writing Services</option>
          <option>Cover Letters Writing</option>
          <option>E-Book Writing</option>
          <option>LinkedIn Profile Writing</option>
          <option>Book Cover Design</option>
          <option>Career Switch Resume</option>
          <option>Book Proof Reading and Editing</option>
          <option>Student Resume Writing</option>
          <option>Book Publishing Services</option>
          <option>Visual Resume</option>
          <option>Book Marketing</option>
        </select>
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-6 col-md-6">
      <div class="form-group">
        <select name="budget" id="budget" class="form-control">
          <option value="">Budget</option>
          <option>$85</option>
          <option>$199</option>
          <option>$349</option>
          <option>$469</option>
          <option>$749</option>
          <option>$1199</option>
          <option>$1599</option>
          <option>$1999</option>
          <option>$2499</option>
          <option>$4999</option>
          <option>$9999</option>
          <option>$15999</option>
          <option>$19999</option>
          <option>$25999</option>
        </select>
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-12 col-md-12">
      <div class="form-group">
        <textarea name="msg" class="form-control" id="message" cols="30" rows="6" required="" data-error="Write your message" placeholder="Your Message"></textarea>
        <div class="help-block with-errors"></div>
      </div>
    </div>
    <div class="col-lg-12 col-md-12">
      <button type="submit" class="default-btn">Send Message<span></span></button>
      <div id="msgSubmit" class="h3 text-center hidden"></div>
      <div class="clearfix"></div>
    </div>
  </div>
</form>

POST /process.php

<form action="/process.php" method="post">
  <h3 class="title">Request A Call Back</h3>
  <div class="input-box mt-4">
    <input type="text" placeholder="Name" name="name" required="" class="form-control">
  </div>
  <div class="input-box mt-4">
    <input type="email" placeholder="Email" name="email" required="" class="form-control">
  </div>
  <div class="input-box mt-4">
    <input type="text" placeholder="Phone Number" name="phone" required="" class="form-control">
  </div>
  <div class="input-box mt-4">
    <textarea name="msg" id="msg" cols="30" rows="4" placeholder="Write Message" class="form-control"></textarea>
  </div>
  <div class="input-box mt-4 text-center">
    <button type="submit" class="default-btn">
      <i class="bx bxs-paper-plane"></i> Send Message </button>
  </div>
</form>

Text Content

This website uses cookies to ensure you get the best experience on our website.
Learn more
Got it!
   
   
   
 * Resume Services
   * Resume Writing Services
   * Cover Letters Writing
   * LinkedIn Profile Writing
   * Career Switch Resume
   * Student Resume Writing
   * Entry Level Resume
   * Visual Resume
 * Book Services
   * Book Writing Services
   * E-Book Writing
   * Book Cover Design
   * Book Proof Reading and Editing
   * Book Publishing Services
   * Book Marketing
 * Pricing
   
   
   
 * FAQ

Contact Chat with Us


RESUME WRITING SERVICE


BOOK
WRITING SERVICES

A human mind generates millions of ideas, but a majority of them are not paid
heed to either due to time restrictions or carelessness. Guess what! Writers
Daddy wants to help you with this.


E-BOOK
WRITING SERVICES

Why are E-Books becoming renowned these days? This must be a question dawning
upon your mind. The reason is simple, Electronic Books or E-books are convenient
and easy to write.


RESUME
WRITING SERVICES

We write your Résumé as per the ATS (Applicant Tracking System) standard which
brings your profile to the top list of candidates, consequently increasing your
chances of getting jobs.


COVER LETTERS
WRITING SERVICES

The effective cover letter serves as a key to engage the professional’s mind to
go ahead and analyze the resume.


LINKEDIN
PROFILE WRITING

In the growing digital world, LinkedIn has become a medium for recruiters to
judge the expertise of a person without relying on the conventional means.
LinkedIn enables you to see and be seen by prospective employers worldwide.


BOOK COVER
DESIGN SERVICES

When you have written a book, you must select an engaging Cover to create an
impact upon the readers. These days, the best-selling books are the ones that
have the most attractive book covers.


BOOK
PUBLISHING SERVICES

You need genuine and reputable book publishers who publish your book on various
platforms, like Amazon, Barnes & Noble, Inc, Quora, etc. It will open a door to
new opportunities for you.


BOOK
MARKETING SERVICES

Writers Daddy helps you market your book globally. At this point, there is a
cut-throat competition because of which you may not easily make way to the top,
but with the help of us, you will be able to grow as your book will reach people
sitting on the other corner of the world.


Get a Quote





AWESOME, I WOULD LIKE TO START A PROJECT NOW!

Send Message


COMPLETE PREMIUM WRITING SERVICES

Writers Daddy is a hub of Premium Writing Services, where we provide help in
almost all types of writing work to our customers. We believe in giving a hand
to clients looking for career growth, search engine optimization, blogging,
personal branding, etc.
We believe in facilitating clients from various backgrounds with different types
of needs and requirements. In all these cases, their writing work will be
ultra-professional and sophisticated. Consequently, your audience will be
impressed with the content which we write for you, and your reputation will
enhance.


Writersdaddy Process


WHAT PROCEDURE DO WE FOLLOW
TO MAKE YOUR WORK BEST!


FIRST STEP

A customer fills up the Project Brief form mentioning his or her project
details. Attaching a supporting document is highly appreciated.


SECOND STEP

Our expert team initiates writing your project. It will be considered as the
first draft.


THIRD STEP

Upon completion, our Project Manager shares with you the first draft. You can
review it and make changes if required.


FOURTH STEP

Since we offer unlimited amendments thus you can send us as many revisions as
you need.


FIFTH STEP

Then we will share with you the final draft.


SIXTH STEP

You are satisfied which is further shown from your 5-star review

Our Work


PORTFOLIO

 * all
 * Resume Writing
 * Cover Letter Writing
 * Book Cover




TOP-NOTCH WRITING SERVICES

Our Certified Writers can unlock the door to your future. We are proud to
represent multiple clients for the following sectors.

Sales & Marketing

Supplies & Logistics

Information Technology

Entertainment

Accounts & Finance

Government & Private

Law & Education

Travel & Research

Medical & Health Care

Construction & Automotive

Restaurant Management

HR, QA & QC

80
+

Completed Projects

82
+

Happy Clients

83
+

Ongoing Projects

80
%

Satisfied Clients


HAVE ANY QUESTION ABOUT US?

Don't hesitate to contact us.

Contact Us


WHATS OUR CLIENTS SAID ABOUT WRITERS DADDY


GLORIA RIVERA PINERO

Wonderful customer service…
wonderful customer service i excited to see the end result..


JULIETTA CROOM

Excellent Customer Service…
Jasper Benjamin has been a great help in assisting me with..


DEANNA WILLIAMS

the agent was very helpful…



ELIZABETH A SUNDERMAN

I am so glad that..
I am so glad that I chose Writersdaddy out of a multitude...


JILL HOVEY

These guys are AMAZING…
These guys are AMAZING! Professional, easy to work with, fast and reliable..


SAAD SAQIB

Thank you so much…
Thank you so much for your efforts it really...


GET TO KNOW ABOUT WRITERS DADDY

 * How are writers selected?
   
   A rigorous selection and training process is used when hiring new writers.
   When an order is placed with us, we select a writer based on the subject
   matter, scholastic level, and deadline. We take pride in having writers that
   have both scholastic and real-world experience that makes them a perfect fit
   for the position.

 * How do I request revisions?
   
   You may contact our customer service support or fill out the form provided to
   you after the completion of your document.

 * Can others find out that I am using this service?
   
   We take our client’s confidentiality seriously. Special steps are taken to
   ensure that charges reflected on your bank statements do not reveal your use
   of scholastic writing services.

 * What kind of writing services do you offer?
   
   We also provide resume and CV writing services, along with business content
   writing

 * Are prices negotiable?
   
   As a general rule, our prices are not negotiable and comply with the prices
   posted on our website. After the completion of your order form, you will be
   notified of your final cost. However, we do accept specialized requests for
   writing services. In such instances, we work with the customer to agree on a
   fair price.



SIGN UP HERE TO GET 30% OFF


GET IN TOUCH

Send Message



LET'S WORK TOGETHER

We Love to Listen to Your Requirements
Services Resume Writing Servicess Book Writing Services Cover Letters Writing
E-Book Writing LinkedIn Profile Writing Book Cover Design Career Switch Resume
Book Proof Reading and Editing Student Resume Writing Book Publishing Services
Visual Resume Book Marketing

Budget $85 $199 $349 $469 $749 $1199 $1599 $1999 $2499 $4999 $9999 $15999 $19999
$25999


Send Message



Testimonials

A well-crafted resume is the first step towards achieving your dream job. Our
team of experienced HR professionals takes pride in analyzing resumes and
suggesting possible strategies to make your resume stand out.


SERVICES

 * Resume Writing Services
 * Cover Letters Writing
 * LinkedIn Profile Writing
   
   
   
   
   
 * Book Writing Services
 * E-Book Writing
 * Book Marketing
 * Book Publishing Services


QUICK LINKS

 * FAQ's
 * Contact Us
 * Privacy Policy
 * Terms & Conditions


CONTACT INFO

 * Location: 394 N St, Merced CA 95341
 * Email: info@writersdaddy.com
 * Phone: +1 (650) 5146 390

 * 
 * 
 * 

Copyright ©2021 Writers Daddy.
WritersDaddy is a DBA of SMHTECHNOLOGY LLC

DISCLAIMER: The website with all its applications and systems is an online
service platform solely owned and operated by Writers Daddy. We provide content
writing services to clients for their resume, cover letter, LinkedIn profile,
entry level resumes and career switch resumes.




REQUEST A CALL BACK





Send Message