html
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
<!--Created by ~AZ~-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinkedIn clone</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="logo">
<img src="https://www.dropbox.com/scl/fi/r061q7j16g8zq8n5k9a6h/IMG-20250206-WA0012.jpg?rlkey=qt6vw9hds75s4ehsf5ngga40u&st=wihwnkfl&raw=1">
</div>
<div class="container">
<div class="login-box">
<h2>Sign in</h2>
<p>Stay updated on your professional world</p>
<form>
<div class="input-box">
<input type="text" placeholder="Email or Phone" required>
</div>
<div class="input-box">
<input type="password" placeholder="Password" required>
</div>
<a href="#" class="forgot-password">Forgot password?</a>
<button type="submit" class="login-btn">Sign in</button>
</form>
Enter to Rename, Shift+Enter to Preview
css
css
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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Open Sans, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #fff;
}
.container {
width: 100%;
max-width: 400px;
}
.login-box {
background: #fff;
padding: 30px;
width:400px;
height:500px;
border-radius: 10px;
Enter to Rename, Shift+Enter to Preview
js
js
1
alert ("Logo may take some time to load")
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run