Skip to content

Instantly share code, notes, and snippets.

@jagveerdev
Created April 19, 2018 09:23
Show Gist options
  • Select an option

  • Save jagveerdev/6c09723a17fb50e4b858e9e061ee2712 to your computer and use it in GitHub Desktop.

Select an option

Save jagveerdev/6c09723a17fb50e4b858e9e061ee2712 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head><title>Twitter Login</title></head>
<body style="background-color:#E6ECF0">
<div>
<header style="height:50px; border:; background-color:white">
<section style="width:50%; height:50px; float:left; text-align:center">
<ul style="list-style-type:none">
<li style="display:inline;margin:0px;padding:0px; "><img src="1.png" height="20px"></li>
<li style="display:inline"><a href="#">Home</a></li>
<li style="display:inline; padding-left:20px"><a href="#">About</a></li>
</ul>
</section>
<section style="width:50%; height:50px; float:right; text-align:center">
<ul style="list-style-type:none">
<li style="display:inline"><a href="#">Language: <select><option>English</option></select></a></li>
</ul>
</section>
</header>
<article style="margin-top:10px">
<table width="60%" style="margin-left:295px; padding-top:10px; padding-left:90px; background-color:white; padding-bottom:10px">
<tr>
<td>
<h1 style="margin-bottom:10px; font-size: 28px">Log in to Twitter</h1>
</td>
</tr>
<tr>
<td>
<input type="text" placeholder="Phone, email or username" size="38" style="padding-top:7px; padding-bottom:7px; font-size:15px">
</td>
</tr>
<tr>
<td>
<input type="password" placeholder="Password" size="38" style="padding-top:7px; padding-bottom:7px; font-size:15px; margin-top:10px">
</td>
</tr>
<tr>
<td>
<input type="submit" value="Log In" style="background-color:#1da1f2; height:40px; margin-top:25px; font-size:15px; width:80px; color:white; margin-right:10px ">
<input type="checkbox">
<label>Remember me . <a href="#" style="color:#1da1f2">Forgot password?</a></label>
</td>
</tr>
</table>
</article>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment