-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
90 lines (84 loc) · 2.51 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Instagram</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="wrapper">
<div class="home">
<img class="imager" src="images/flower.jpg" alt="">
<img class="imageresponse" src="images/home.png" alt="">
</div>
<div class="signup">
<div class="signuppage">
<h1>Instagram</h1>
<h3>Sign up to see photos and videos from your friends.</h3>
<button class="facebook"><i class="fa fa-facebook-square" aria-hidden="true"></i> <a href="#">Login with Facebook</a></button>
<div class="line">
<div class="line1">
<h4><span>OR</span></h4>
</div>
<div class="form">
<form action="#">
<div class="form-straight">
<input type="text" name="" id placeholder="Mobile Number or Email">
</div>
<div class="form-straight">
<input type="text" name="" id="" placeholder="FullName">
</div>
<div class="form-straight">
<input type="text" name="" id="" placeholder="Usename">
</div>
<div class="form-straight">
<input type="text" name="" id="" placeholder="Password">
</div>
<div class="capcha">
<input type="checkbox" name="" id=""><p>I'm not a robot</p>
</div>
<div class="form-Straight">
<input type="button" value="Sign up" name="" id="" class="signup-btn ">
<p class="terms">By signing up, you agree to our <span>Terms</span> & <span>Privacy Policy</span>.</p>
</div>
</form>
</div>
</div>
</div>
<div class="login">
<p>Have an account? <a href="">Log in</a></p>
</div>
<div class="appstore">
<p>Get the app</p>
<div class="app">
<img src="images/appstore.png" alt="">
</div>
<div class="app2">
<img src="images/googleplay.png" alt="">
</div>
</div>
</div>
</div>
<div class="footer">
<ul>
<li>
<a href="">ABOUT US</a>
<a href="">SUPPORT</a>
<a href="">BLOG</a>
<a href="">PRESS</a>
<a href="">API</a>
<a href="">JOBS</a>
<a href="">PRIVACY</a>
<a href="">TERMS</a>
<a href="">DIRECTORY</a>
<a href="">LANGUAGE</a>
</li>
</ul>
<p>© 2017 INSTAGRAM</p>
</div>
</script>
</body>
</html>