-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.76 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Document</title>
</head>
<body>
<div class="login">
<form>
<h4><img src="https://www.pngitem.com/pimgs/b/511-5118318_insta-instagram-word-logo-transparent-hd-png-download.png" alt=""></h4>
<div class="input-container">
<label>Username:</label>
<input type="text" id="username-input">
</div>
<div class="input-container">
<label>Password:</label>
<input type="text" id="password-input">
</div>
<div class="forgot">
<a href="https://www.instagram.com/accounts/password/reset/">Forgot your password</a>
<button class="login-btn">Log in</button>
</div>
</form>
<div class="sign-up">
<p class="need-account">Need an account?</p>
<p class="sign-up-download">Download the app to sign up.</p>
<div class="app-buttons">
<button><i class="fa-brands fa-apple">
</i> Download on the <br>
App Store</button>
<button><i class="fa-brands fa-google-play"></i> Get it on <br>
Google play</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>