-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Instagram Login Page</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
|
||
<div class="wrapper"> | ||
<div class="header"> | ||
<div class="top"> | ||
<div class="logo"> | ||
<img src="Instagram.png" alt="Instagram" style="width: 175px;"> | ||
</div> | ||
<div class="form"> | ||
<div class="input_field"> | ||
<form action="http://www.google.com" method="Post"> | ||
|
||
<input type="text" placeholder="Phone number, username, or email" class="input" name="username"> | ||
</div> | ||
<div class="input_field"> | ||
<input type="password" placeholder="Password" class="input" name="password"> | ||
|
||
</div> | ||
<div class="btn"><a href="http://www.google.com" type="submit">Log In</a></div> | ||
</div> | ||
<div class="or"> | ||
<div class="line"></div> | ||
<p>OR</p> | ||
<div class="line"></div> | ||
</div> | ||
<div class="dif"> | ||
<div class="fb"> | ||
<img src="Facebook.png" alt="Facebook"> | ||
<p>Login via Facebook</p> | ||
</div> | ||
|
||
<div class="forgot"> | ||
<a href="https://www.google.com">Forgot password?</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="signup"> | ||
<p>Don't have an account? <a href="https://www.google.com">Sign up</a></p> | ||
</div> | ||
<div class="apps"> | ||
<p>Get the App</p> | ||
<div class="icons"> | ||
<a href="https://www.google.com"><img src="AppStore.png" alt="AppStore"></a> | ||
<a href="https://www.google.com"><img src="GooglePlay.png" alt="GooglePlay"></a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="footer"> | ||
<div class="links"> | ||
<ul> | ||
<li><a href="https://www.google.com">ABOUT US</a></li> | ||
<li><a href="https://www.google.com">SUPPORT</a></li> | ||
<li><a href="#">PRESS</a></li> | ||
<li><a href="#">API</a></li> | ||
<li><a href="#">JOBS</a></li> | ||
<li><a href="#">PRIVACY</a></li> | ||
<li><a href="#">TERMS</a></li> | ||
<li><a href="#">DIRECTORY</a></li> | ||
<li><a href="https://www.google.com">PROFILES</a></li> | ||
<li><a href="https://www.google.com">HASHTAGS</a></li> | ||
<li><a href="#">LANGUAGE</a></li> | ||
</ul> | ||
</div> | ||
<div class="copyright"> | ||
© 2021 INSTAGRAM | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |