Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
148 changes: 114 additions & 34 deletions newsletter-sign-up-with-success-message-main/index.html
Original file line number Diff line number Diff line change
@@ -1,52 +1,132 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">

<title>Frontend Mentor | Newsletter sign-up form with success message</title>
<link rel="stylesheet" href="style.css">

<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<body>

<!-- Sign-up form start -->

Stay updated!

Join 60,000+ product managers receiving monthly updates on:

Product discovery and building what matters
Measuring to ensure updates are a success
And much more!

Email address
email@company.com

Subscribe to monthly newsletter

<!-- Sign-up form end -->
<body>
<div class="main-rect">
<div class="left-form">
<h1 class="title">
Stay updated!
</h1>
<p class="desc">
Join 60,000+ product managers receiving monthly
updates on:
</p>

<!-- Success message start -->
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
Product discovery and building what matters
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
Measuring to ensure updates are a success
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
And much more!
</p>
</div>
<form class="main-form" action="success.html" method="get">
<label for="email" class="lab">Email adress</label>
<input type="email" placeholder="email@company.com" required>
<button type="submit">Subscribe to monthly newsletter</button>
</form>
</div>
<div class="right-img">
<img src="assets/images/illustration-sign-up-desktop.svg" class="desk-img" alt="">
</div>
</div>

Thanks for subscribing!
<div class="mobile-main">
<img src="assets/images/illustration-sign-up-mobile.svg" class="pic">
<div class="main-area">
<h1 class="title">
Stay updated!
</h1>
<p class="desc">
Join 60,000+ product managers receiving monthly updates on:
</p>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
Product discovery and building what matters
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
Measuring to ensure updates are a success
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="" class="tickImg">
<p>
And much more!
</p>
</div>
<form class="main-form" action="success.html" method="post">
<label for="email" class="lab">Email adress</label>
<input type="email" placeholder="email@company.com" required>
<button type="submit">Subscribe to monthly newsletter</button>
</form>

A confirmation email has been sent to ash@loremcompany.com.
Please open it and click the button inside to confirm your subscription.
</div>
</div>

Dismiss message
<div class="tablet-main">
<img src="assets/images/illustration-sign-up-tablet.svg" class="pic">
<div class="main-area">
<h1 class="title">
Stay updated!
</h1>
<p class="desc">
Join 60,000+ product managers receiving monthly updates on:
</p>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="tick before sentence" class="tickImg">
<p>
Product discovery and building what matters
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="tick before sentence" class="tickImg">
<p>
Measuring to ensure updates are a success
</p>
</div>
<div class="checklistItem">
<img src="assets/images/icon-success.svg" alt="tick before sentence" class="tickImg">
<p>
And much more!
</p>
</div>
<form class="main-form" action="success.html" method="post">
<label for="email" class="lab">Email adress</label>
<input type="email" placeholder="email@company.com" required>
<button type="submit">Subscribe to monthly newsletter</button>
</form>

<!-- Success message end -->

<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
</div>
</body>

</html>
Loading