Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions Insta_Login_page/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram Login</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="center">
<div class="header">
<img src="instagramlogo.png" alt="instagramLogo" class="instaLogo" />
</div>
<div class="inputElement">
<input
type="text"
placeholder="Phone number,username or email"
class="inputText"
/>
<input type="password" placeholder="Password" class="inputText" />
<input type="submit" value="Log in" class="inputButton" />
<div class="line">
<span class="arrow"></span>
<span class="content">OR</span>
<span class="arrow"></span>
</div>
<div class="social__icon">
<i class="fab fa-facebook-square"></i
><span>Log in with facebook</span>
</div>
<div class="forgetPassword">Forget Password?</div>
</div>
</div>
<div class="footer">
<p>Don't have a accout?<span>Sign Up</span></p>
</div>
</div>
</body>
</html>
Binary file added Insta_Login_page/instagramlogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
98 changes: 98 additions & 0 deletions Insta_Login_page/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Roboto", sans-serif;
}

.container {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.center {
width: 350px;
border: 1px solid rgb(195, 195, 195);
border-radius: 3px;
}
.center .header {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 17px;
}

.center .inputElement {
display: flex;
flex-direction: column;
margin: 0px 37px 0px 37px;
}

.inputElement .inputText {
padding: 8px;
font-size: 12px;
margin-top: 10px;
}
.inputText:focus {
outline: gray;
}

.inputButton {
background-color: rgb(5, 117, 223);
color: white;
font-size: 12px;
padding: 8px;
border-radius: 3px;
margin-bottom: 12px;
margin-top: 12px;
border: none;
}
.line {
display: flex;
margin-top: 6px;
}
.arrow {
background-color: gray;
height: 1px;
width: 140px;
}
.content {
color: gray;
margin-top: -7px;
margin-left: 4px;
margin-right: 4px;
}
.social__icon {
margin: auto;
margin-top: 10px;
margin-bottom: 15px;
}
.fab {
padding: 5px;
color: rgb(0, 55, 107);
}
.social__icon span {
color: rgb(0, 55, 107);
font-family: sans-serif;
font-size: 14px;
font-weight: 500;
}
.forgetPassword {
margin: auto;
color: rgb(101, 178, 250);
margin-bottom: 25px;
}
.footer {
margin-top: 30px;
border: 1px solid rgb(195, 195, 195);
padding: 20px;
width: 350px;
text-align: center;
}
.footer span {
color: rgb(0, 66, 128);
font-weight: 400;
}