-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
54 lines (54 loc) · 2.36 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
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up | Linkedin</title>
<link rel="stylesheet" href="./css/style.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<!-- Header -->
<header id="header">
<img src="./img/logo.png" alt="linkedins logo" id="logo">
</header>
<!-- body -->
<section class="body">
<div class="sign-up">
<div class="form-head">
<p>
Sign up for free to get more
</p>
</div>
<div class="form-body">
<form class="form-inputs">
<label for="first-name">First name</label>
<input type="text" name="first-name" placeholder="First name">
<label for="last-name">Last name</label>
<input type="text" name="last-name" placeholder="Last name">
<label for="email-or-phone">Email or phone number
</label>
<input type="email" placeholder="Email or phone number">
<label for="password">Password (6 or more characters)</label>
<input type="password" name="password" placeholder="Password (6 or more characters)">
<p class="accept-roles">
By clicking Agree & Join, you agree to the LinkedIn
<a href="#">User Agreement</a>,<a href="#"> Privacy Policy</a>, and <a href="#">Cookie Policy.</a>
</p>
<button type="submit" class="accept">Agree & Join</button>
<p class="or-login">
Already have an account? <a href="#">Sign in</a>
</p>
</form>
</div>
</div>
</section>
</body>
</html>