Skip to content

Instantly share code, notes, and snippets.

@adarsh-gupta101
Created May 13, 2025 13:35
Show Gist options
  • Save adarsh-gupta101/ec38d198788f84f79af06a3fe5b27714 to your computer and use it in GitHub Desktop.
Save adarsh-gupta101/ec38d198788f84f79af06a3fe5b27714 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Tachyons Example</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/tachyons/4.11.1/tachyons.css"
/>
<!-- font family popins -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:300,400,600,700"
rel="stylesheet"
/>
<style>
* {
font-family: "poppins";
}
</style>
</head>
<body class="pa4">
<div class="center mw7">
<h1 class="tc">Weekly Testing Newsletter Testing News & Tips</h1>
<p class="tc">Stay up-to-date with the latest news and updates</p>
<form class="pa3" action="submit-form.php" method="post">
<label class="db mb2">Name:</label>
<input
class="input-reset ba b--black-20 pa2 mb2 db w-100"
type="text"
name="name"
required
/>
<label class="db mb2">Email:</label>
<input
class="input-reset ba b--black-20 pa2 mb2 db w-100"
type="email"
name="email"
required
/>
<button
class="f6 link dim br2 ph3 pv2 mb2 dib white bg-dark-green"
type="submit"
>
Subscribe
</button>
</form>
<p class="tc mt4">Thank you for subscribing to our newsletter!</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment