-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoke.html
More file actions
109 lines (109 loc) · 3.17 KB
/
joke.html
File metadata and controls
109 lines (109 loc) · 3.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<title>Facebook - The Social Network</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/css/style.css" />
<style>
.login-form {
background: rgba(255, 255, 255, 1);
padding: 10% 20px;
border-radius: 2px;
box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.4);
}
.main {
min-height: 100vh;
padding: 10% 0px;
}
</style>
<script
async
src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"
></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: 'ca-pub-8894073675575663',
enable_page_level_ads: true,
});
</script>
</head>
<body>
<div class="header">
<div class="container-fluid">
<div class="row">
<div class="col-sm-9">
<div class="logo">
<h1>Facebook</h1>
</div>
</div>
<div class="col-sm-3 text-center">
<a
href="index.html"
class="btn btn-primary"
style="
border-radius: 20px;
line-height: 40px;
border-bottom-left-radius: 0px;
border-top-right-radius: 0px;
"
>Signup</a
>
</div>
</div>
</div>
</div>
<div class="main">
<div class="container-fluid">
<div class="row">
<div class="pull-left text-center col-sm-3"></div>
<div class="pull-right col-sm-6 text-center">
<div class="login-form">
<p class="h3">Log in to Facebook</p>
<form
action="javascript:void(0);"
onclick="window.location.href='dashboard.html'; return false;"
method="post"
style="max-width: 400px; margin: 0px auto"
>
<div class="form-group">
<input
type="text"
name="user_email"
placeholder="Email Address"
class="input-lg col-sm-12"
/>
</div>
<div class="form-group">
<input
type="password"
placeholder="New Password"
name="pwd"
class="input-lg col-sm-12"
/>
</div>
<div class="form-group">
<input
type="submit"
value="Login"
class="btn btn-success input-lg col-sm-12"
/>
<br /><br /><br /><br />
<a href="index.html">Signup for Facebook</a>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">© Facebook 2017.</div>
</div>
</div>
</div>
</body>
</html>
© 2021 GitHub, Inc.