<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: irishgeoff9</title>
    <description>The latest articles on DEV Community by irishgeoff9 (@irishgeoff9).</description>
    <link>https://dev.to/irishgeoff9</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F918999%2F5388c08f-de7c-4dae-b72d-99520f882d0e.jpeg</url>
      <title>DEV Community: irishgeoff9</title>
      <link>https://dev.to/irishgeoff9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/irishgeoff9"/>
    <language>en</language>
    <item>
      <title>send form to email</title>
      <dc:creator>irishgeoff9</dc:creator>
      <pubDate>Tue, 27 Sep 2022 11:27:29 +0000</pubDate>
      <link>https://dev.to/irishgeoff9/send-form-to-email-4e86</link>
      <guid>https://dev.to/irishgeoff9/send-form-to-email-4e86</guid>
      <description>&lt;p&gt;When you create your next website just remember you don't have to program every feature you need.&lt;/p&gt;

&lt;p&gt;If you want a quick way to get your HTML contact form submissions.&lt;/p&gt;

&lt;p&gt;With just a few lines of HTML code. You can create a contact form for your website , that will send the form data to an email.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action="https://fabform.io/f/{form-id}" method="post"&amp;gt;
 &amp;lt;label for="email"&amp;gt;Your Email&amp;lt;/label&amp;gt;
 &amp;lt;input name="email" type="email"&amp;gt;
 &amp;lt;button type="submit"&amp;gt;Submit&amp;lt;/button&amp;gt; 
&amp;lt;/form&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You just need to create a free account on the [static website forms] backend fabform.io&lt;/p&gt;

&lt;p&gt;Read more about it here.&lt;/p&gt;

&lt;p&gt;[Here is how to &lt;a href="https://fabform.io/a/send-form-to-email"&gt;send form to email&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>webdev</category>
      <category>email</category>
      <category>programming</category>
    </item>
    <item>
      <title>jamstack static website forms</title>
      <dc:creator>irishgeoff9</dc:creator>
      <pubDate>Sat, 24 Sep 2022 02:36:04 +0000</pubDate>
      <link>https://dev.to/irishgeoff9/static-website-forms-493a</link>
      <guid>https://dev.to/irishgeoff9/static-website-forms-493a</guid>
      <description>&lt;h2&gt;
  
  
  jamstack forms
&lt;/h2&gt;

&lt;p&gt;I am going to show you a quick solution on how to quickly add &lt;a href="https://fabform.io"&gt;static website forms&lt;/a&gt; to any static website.&lt;/p&gt;

&lt;p&gt;As you may know, a static website does not have a backend -- so there are no server-side languages to handle any forms. &lt;/p&gt;

&lt;p&gt;A static site only consists of just (HTML,CSS and Javascript). Static website are also known as jamstack websites.&lt;/p&gt;

&lt;p&gt;That begs the question. How can you add a static website form to your website?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lyL_KIQh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qpaxflv3fszjybbyxjmu.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lyL_KIQh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qpaxflv3fszjybbyxjmu.jpg" alt="static website forms" width="880" height="571"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Turns out, its quite simple. We will be using a forms back-end service called &lt;a href="https://fabform.io"&gt;fabform.io&lt;/a&gt; to add a contact form to our static site.&lt;/p&gt;

&lt;p&gt;Simply navigate to fabform.io to create a free account and click on "Create Endpoint". Cut and paste your new endpoint id into the action property of your HTML contact form.&lt;/p&gt;

&lt;p&gt;Here is an example HTML contact form for your jamstack ~ static website.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action="https://fabform.io/f/{form-id}" method="post"&amp;gt;
 &amp;lt;label for="email"&amp;gt;Your Email&amp;lt;/label&amp;gt;
 &amp;lt;input name="email" type="email"&amp;gt;
 &amp;lt;button type="submit"&amp;gt;Submit&amp;lt;/button&amp;gt; 
&amp;lt;/form&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Feel free to modify your contact form and add any fields you which to collect forms data from.&lt;/p&gt;

&lt;p&gt;Just remember to name each html forms field with the name you want to store each field for.&lt;/p&gt;

&lt;p&gt;That's all there is to it. You can now publish your jamstack ~ static website as you normally do.&lt;/p&gt;

&lt;p&gt;Congratulations! You have a fully working a static website form on up and running on your site.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Bonus&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;If you are creating a new website with the hugo static website generator.&lt;/p&gt;

&lt;p&gt;I would recommend you check out these awesome &lt;a href="https://hugo-templates.netlify.app"&gt;free hugo themes&lt;/a&gt; that have &lt;a href="https://fabform.io"&gt;static website forms&lt;/a&gt; already built into the themes.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>forms</category>
      <category>ssg</category>
    </item>
    <item>
      <title>free hugo themes - producthunt</title>
      <dc:creator>irishgeoff9</dc:creator>
      <pubDate>Mon, 19 Sep 2022 07:15:42 +0000</pubDate>
      <link>https://dev.to/irishgeoff9/free-hugo-themes-producthunt-3dej</link>
      <guid>https://dev.to/irishgeoff9/free-hugo-themes-producthunt-3dej</guid>
      <description>&lt;p&gt;Just launched our free hugo themes on product launch&lt;br&gt;
Please upvote everyone :)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.producthunt.com/posts/free-hugo-themes"&gt;free hugo themes&lt;/a&gt; on product hunt.&lt;/p&gt;

&lt;p&gt;List of some awesome beautiful responsive &lt;a href="https://plausible.io/hugo-templates.netlify.app"&gt;free hugo themes&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Jamstack forms</title>
      <dc:creator>irishgeoff9</dc:creator>
      <pubDate>Mon, 12 Sep 2022 09:54:57 +0000</pubDate>
      <link>https://dev.to/irishgeoff9/jamstack-forms-1o7i</link>
      <guid>https://dev.to/irishgeoff9/jamstack-forms-1o7i</guid>
      <description>&lt;p&gt;This is going to be a very quick tutorial on how to add &lt;a href="https://fabform.io"&gt;jamstack forms&lt;/a&gt; to a static website.&lt;/p&gt;

&lt;p&gt;Static websites as you may know are websites that comprise of no more than just HTML, CSS and Javascript. &lt;/p&gt;

&lt;p&gt;A static website by it's very nature does not have a server back-end, so there are no server languages to "post" your forms to --so to speak.&lt;/p&gt;

&lt;p&gt;At some point you may want to add forms to your site and since your static website does not have a backend , you will need to employ the services of a &lt;a href="https://fabform.io"&gt;jamstack forms&lt;/a&gt; backend.&lt;/p&gt;

&lt;p&gt;To add a contact us form to your website we will be using the forms backend service &lt;a href="https://fabform.io"&gt;fabform.io&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;It's just a simple case of creating a endpoint on fabform.io and adding a HTML contact form to your web page and pointing the form's action method to your newly created fabform.io endpoint.&lt;/p&gt;

&lt;p&gt;With your contact form up and running you can now easily collect all of your form submissions.&lt;/p&gt;

&lt;p&gt;Here is all the code you will need to get a &lt;a href="https://fabform.io"&gt;jamstack forms&lt;/a&gt; contact us page up and working on your site.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;form action="https://fabform.io/f/{form-id}" method="post"&amp;gt;
 &amp;lt;label for="email"&amp;gt;Your Email&amp;lt;/label&amp;gt;
 &amp;lt;input name="email" type="email"&amp;gt;
 &amp;lt;button type="submit"&amp;gt;Submit&amp;lt;/button&amp;gt; 
&amp;lt;/form&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You will need to replace the form's action method to point to a endpoint that you will of have created on the &lt;a href="https://fabform.io"&gt;jamstack forms&lt;/a&gt; forms backend service fabform.io&lt;/p&gt;

&lt;p&gt;For additional information see how to &lt;br&gt;
&lt;a href="https://fabform.io/a/create-a-static-website-with-contact-form-on-github-pages"&gt;create a static website with contact form on github pages&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There you have it folks. All you needed to get jamstack forms up and running on your website.&lt;/p&gt;

</description>
      <category>jamstack</category>
      <category>webdev</category>
      <category>ssg</category>
      <category>html</category>
    </item>
    <item>
      <title>Free Hugo Themes</title>
      <dc:creator>irishgeoff9</dc:creator>
      <pubDate>Tue, 06 Sep 2022 19:56:00 +0000</pubDate>
      <link>https://dev.to/irishgeoff9/free-hugo-themes-55pp</link>
      <guid>https://dev.to/irishgeoff9/free-hugo-themes-55pp</guid>
      <description>&lt;p&gt;I would like to share with everyone a very nice collection of &lt;a href="//hugo-templates.netlify.app"&gt;free hugo themes&lt;/a&gt; for the Hugo static site generator (SSG).  Hope you enjoy.&lt;/p&gt;

</description>
      <category>hugo</category>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
    </item>
  </channel>
</rss>
