Home  >  Article  >  Web Front-end  >  Build a Newsletter Signup Form Website

Build a Newsletter Signup Form Website

王林
王林Original
2024-08-31 06:34:33341browse

Build a Newsletter Signup Form Website

Introduction

Hello, developers! I’m excited to share my latest project: a Newsletter Signup Form. This project is perfect for those looking to create a functional and visually appealing form that collects user email addresses for newsletters using HTML, CSS, and JavaScript. It’s a great way to enhance your frontend development skills and build a useful tool for managing subscriptions.

Project Overview

The Newsletter Signup Form is a web application designed to allow users to subscribe to newsletters. The form includes email validation and displays a success message upon successful subscription. With a clean and interactive design, this project demonstrates how to create a practical and user-friendly form.

Features

  • Email Validation: Ensures that users enter a valid email address before submission.
  • Success Message: Displays a confirmation message after a successful subscription.
  • Responsive Design: The form is fully responsive, ensuring it looks great on both desktop and mobile devices.

Technologies Used

  • HTML: Provides the structure for the Newsletter Signup Form.
  • CSS: Styles the form to make it visually appealing and user-friendly.
  • JavaScript: Handles email validation and displays the success message based on user input.

Project Structure

Here’s an overview of the project structure:

Newsletter-Signup-Form/
├── index.html
├── style.css
└── script.js
  • index.html: Contains the HTML structure for the Newsletter Signup Form.
  • style.css: Includes CSS styles to create a modern and responsive design.
  • script.js: Manages the interactive elements and handles email validation and success messaging.

Installation

To get started with the project, follow these steps:

  1. Clone the repository:

    git clone https://github.com/abhishekgurjar-in/Newsletter-Signup-Form.git
    
  2. Open the project directory:

    cd Newsletter-Signup-Form
    
  3. Run the project:

    • Open the index.html file in a web browser to view the Newsletter Signup Form.

Usage

  1. Open the website in a web browser.
  2. Enter your email address into the input field.
  3. Click the Subscribe button to submit your email.
  4. View the success message displayed after successful subscription.

Code Explanation

HTML

The index.html file defines the structure of the Newsletter Signup Form, including input fields, buttons, and result display areas. Here’s a snippet:

8b05045a5be5764f313ed5b9168a17e6
49099650ebdc5f3125501fa170048923
93f0f5c25f18dab9d176bd4f6de5d30e
  1fc2df4564f5324148703df3b6ed50c1
  4f2fb0231f24e8aef524fc9bf9b9874f
  b2386ffb911b14667cb8f0f91ea547a7Newsletter Signup Form6e916e0f7d1e588d4f442bf645aedb2f
  a565cfc5beb6e6a8c6ba642934395a39
  468dcf7b0ee61aef03af1a1fbe6725fc
  5de102113aede4703971b3b780c58efb2cacc6d41bbb37262a98f745aa00fbf0
9c3bca370b5104690d9ef395f2c5f8d1
6c04bd5ca3fcae76e30b72ad730ca86d
  4883ec0eb33c31828b7c767c806e14c7
    8f9e4409b06fde1ff1d3a80f075ca0ed
      641e0de5ce410c86c3a093b6b324b956
        4a249f0d628e2318394fd9b75b4636b1Stay Updated!473f0a7621bec819994bb5020d29372a
        e388a4556c0f65e1904146cc1a846beeJoin our mailing list to receive updates and promotions.94b3e26ee717c64999d7867364b1b4a3
        9c1c3883d21d24a82adc94e97e20713b
          e388a4556c0f65e1904146cc1a846beeEmail Address94b3e26ee717c64999d7867364b1b4a3
          f50061566a3685479c7d3b0d5d936071Valid Email Required94b3e26ee717c64999d7867364b1b4a3
        16b28748ea4df4d9c2150843fecfba68
        ff9c23ada1bcecdd1a0fb5d5a0f18437
          281932a54b782c94d20ff8498db12891
          169513d93b292361c90c726f0b3ca858
        f5a47148e367a6035fd7a2faa965022e
      16b28748ea4df4d9c2150843fecfba68
      b33314c2aece6845b814e24426768d58
        28ffba8a7704d9573fe0b1c02c12376a
      16b28748ea4df4d9c2150843fecfba68
    16b28748ea4df4d9c2150843fecfba68
  16b28748ea4df4d9c2150843fecfba68
  ffd6ba4147bda351239915f463e46e38
    e388a4556c0f65e1904146cc1a846beeMade with ❤️ by Abhishek Gurjar94b3e26ee717c64999d7867364b1b4a3
  16b28748ea4df4d9c2150843fecfba68
36cc49f0c466276486e50c850b7e4956
73a6ac4ed44ffec12cee46588e518a5e

CSS

The style.css file styles the Newsletter Signup Form, making it attractive and easy to use. Below are some key styles:

* {
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #36384e;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.box {
  gap: 20px;
  max-width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-inline: auto;
  background-color: white;
  border-radius: 15px;
}

.left-box {
  margin: 20px;
  width: 50%;
}

.left-box h1 {
  font-size: 50px;
}

.left-box p {
  font-size: 20px;
}

.email-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success {
  display: inline;
}

.success-icon {
  width: 27px;
}

.email-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.not-valid {
  color: red;
  display: none;
}

input {
  font-size: 20px;
  width: 100%;
  height: 50px;
  border-radius: 15px;
  border: 2px solid black;
}

.button {
  font-size: 20px;
  width: 100%;
  border-radius: 15px;
  background-color: #242742;
  color: white;
}

.button:hover {
  background-color: #ff644b;
  cursor: pointer;
}

.right-box {
  width: 50%;
  margin: 0 20px;
}

.right-box img {
  width: 100%;
}

.footer {
  color: white;
  margin: 30px;
  text-align: center;
}

@media (max-width: 1200px) {
  .box {
    flex-direction: column-reverse;
  }
}

JavaScript

The script.js file contains the logic for handling email validation and displaying the success message. Here’s a snippet:

const submitBtn = document.getElementsByClassName("button")[0];
const emailInput = document.getElementsByClassName("email-input")[0];
const error = document.getElementsByClassName("not-valid")[0];
const box = document.getElementsByClassName("box")[0];

submitBtn.addEventListener("click", (event) => {
  event.preventDefault();
  const emailPattern = /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$/;
  const isValid = emailPattern.test(emailInput.value);

  if (!isValid) {
    error.style.display = "block";
  } else {
    error.style.display = "none"; // Hide the error message if email is valid
    box.style.display = "none";

    // Create and show the message
    const message = document.createElement("div");
    message.className = "message";
    message.innerHTML = `
      938598788b30f248187d965791fed44f
        d06cde061393e4022fbb4cd7cf443567
        4a249f0d628e2318394fd9b75b4636b1Thanks for subscribing!473f0a7621bec819994bb5020d29372a
        e388a4556c0f65e1904146cc1a846bee
          A confirmation email has been sent to ${emailInput.value}. Please open
          it and click the button inside to confirm your subscription.
        94b3e26ee717c64999d7867364b1b4a3
        3ce38003a7ba6de8604d8636abf55d8fDismiss message2e9b454fa8428549ca2e64dfac4625cd
      16b28748ea4df4d9c2150843fecfba68`;

    // Append the message to the body
    document.body.appendChild(message);

    // Select the close button from the newly created message element
    const closeBtn = message.querySelector(".closeBtn");
    closeBtn.addEventListener("click", () => {
      message.remove();
      location.reload(); // Reload the website
    });
  }
});

Live Demo

You can check out the live demo of the Newsletter Signup Form project here.

Conclusion

Creating the Newsletter Signup Form was an excellent way to apply frontend development skills to build a functional and engaging tool. This project demonstrates how to create an interactive and responsive form that can be used for managing email subscriptions. I hope it inspires you to build your own tools and enhance your web development skills. Happy coding!

Credits

This project was developed as part of my continuous learning journey in web development.

Author

  • Abhishek Gurjar
    • GitHub Profile

The above is the detailed content of Build a Newsletter Signup Form Website. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn