-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacebook.html
More file actions
45 lines (44 loc) · 1.62 KB
/
facebook.html
File metadata and controls
45 lines (44 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>facebook log in</title>
<meta charset="utf-8">
<link rel="stylesheet" href="facebook.css">
</head>
<body>
<div class="left">
<header>
<h1>facebook</h1>
<p class="p1">Recent logins</p>
<p class="p2">Click your picture or add an account.</p>
</header>
<div class="cards">
<div class="card">
<a href="#">
<img src="https://picsum.photos/seed/picsum/200/300">
<span>Abdelwahab</span>
</a>
</div>
<div class="card">
<a href="#">
<img src="https://picsum.photos/seed/picsum/200/300">
<span>Abdelwahab</span>
</a>
</div>
<div class="card">
<a href="#">
<img src="https://picsum.photos/seed/picsum/200/300">
<span>Abdelwahab</span>
</a>
</div>
</div>
</div>
<form>
<input class="mail" type="email" type="number" placeholder="Email address or phone number">
<input class="pwd" type="password" placeholder="Password">
<input class="submit" type="submit" value="Log in">
<input class="forget_pwd" type="button" value="Forgotten password">
<input class="newAccount" type="button" value="Create New Account">
</form>
</body>
</html>