<!DOCTYPE html> | |
<html> | |
<title>Subscribe and unsubscribe script by HackerRahul</title> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> | |
<body class= "w3-light-gray"> | |
<div class= "w3-container w3-blue"> | |
<h1>Subscribe & Unsubscribe system</h1> | |
</div> | |
<div class="w3-container"> | |
<div class= "w3-display-container" style="padding-top:450px;"> | |
<div class="w3-display-middle w3-indigo w3-padding-left w3-padding-right w3-card-8 " style="width:300px;"> | |
<h1 class="w3-bottombar w3-center">Subscribe Here!</h1> | |
<form method="post" class= "w3-padding-bottom" action="subscribe.php"> | |
<label>FullName:</label> | |
<input class="w3-input" type="text" name="name" placeholder="FirstName" required> | |
<label>Email:</label> | |
<input class="w3-input" type="email" name="email" placeholder="Email addres" required><br> | |
<input type="submit" name="submit" class="w3-btn w3-green w3-round"> | |
<p><center>We won't spam you! just try it once!</center></p> | |
</form> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment