-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
63 lines (51 loc) · 1.57 KB
/
signup.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/signup.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
<div class="content">
<div class="heading">
Join Blogging
</div>
<p>Create an account to personalize your<br>
homepage, follow your favorite authors and<br>
publications, applaud stories you love, and<br>
more.</p>
<br>
<div class="signup facebook">
<a class="fa fa-facebook"></a>
<h3>Sign up</h3>
</div>
<br>
<div class="signup google">
<a class="fa fa-google"></a>
<h3>Sign up</h3>
</div>
<br>
<p id="ask">Already have an account?</p>
<br>
<div class="login facebook">
<a class="fa fa-facebook"></a>
<h3>Sign in</h3>
</div><br>
<div class="login google">
<a class="fa fa-google"></a>
<h3>Sign in</h3>
</div>
<br>
<p id='terms'>To make Blogging work, we log user data and share it with
service providers. Click “Sign up” above to accept Blogging’s
Terms of Service & Privacy Policy.</p>
</div>
</body>
</html>