Skip to content

Instantly share code, notes, and snippets.

@joelethan
Created September 4, 2018 05:09
Show Gist options
  • Save joelethan/60c8aab7544afa4490e70037d713a66e to your computer and use it in GitHub Desktop.
Save joelethan/60c8aab7544afa4490e70037d713a66e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My-Event-App</title>
<link rel="stylesheet" href="UI\style.css">
</head>
<body>
<div class="horizontal_nav">
<a class="active" href="#home">Home</a>
<a href="events.html">Events</a>
<a href="contact.html">Contact</a>
<a href="about.html">About</a>
</div>
<div class="image">
<img src="UI\events1.jpeg" width="100%">
</div>
<div class="signup_form">
<h1>Sign Up</h1>
<form action="sign_up.html">
<p>Full Name</p>
<input type="text" name="" placeholder="Enter Full Name">
<p>Email</p>
<input type="email" name="" placeholder="Enter Email Address">
<p>Password</p>
<input type="password" name="" placeholder="Enter Password">
<input type="submit" name="" value="SUBMIT">
</form>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment