-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml7.html
More file actions
150 lines (141 loc) · 3.83 KB
/
html7.html
File metadata and controls
150 lines (141 loc) · 3.83 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title></title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/3.0.3/handlebars.min.js"></script>
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<style media="screen">
body {
margin: 0 auto;
width: 80%;
font-family: 'proxima-nova','Helvetica Neue',Arial,Helvetica,sans-serif;
}
a {
text-decoration: none;
}
li {
list-style: none;
display: inline;
}
.footer {
font-size: 12px;
float: left;
width: 100%;
padding: 0px;
}
.footer li {
margin: 0px 10px;
font-weight: bold;
}
.footer li:last-of-type {
float: right;
margin-right: 0px;
}
img.ios {
width: 150px;
margin: 0px 5px;
}
img.android {
width: 127px;
margin: 0px 5px;
}
.signin, .signup, .apps-buttons {
border: 1px solid black;
width: 35%;
float: left;
text-align: center;
margin: 90px 40px 10px 40px;
}
.signup, .apps-buttons {
}
.signup {
padding: 20px 0px;
margin-top: 0px;
min-height: 0px;
}
.apps-buttons {
border: none;
margin-top: 0px;
}
.phone {
width: 40%;
height: 600px;
float: left;
margin: 0px 40px;
background: url("https://instagramstatic-a.akamaihd.net/h1/images/homepage/home-phones@2x.png/f82c2ede4ccb.png");
background-repeat: no-repeat;
background-size: 450px 600px;
}
.or {
padding: 20px 0px;
}
.facebook {
padding: 0px 0px 20px 0px;
}
input {
width: 80%;
height: 35px;
margin: 2px;
}
input[type="submit"] {
background-color: blue;
color: white;
margin-top: 7px;
font-size: 20px;
}
input[type="text"] {
font-size: 20px;
color: grey;
}
.forgot {
position: absolute;
top: 230px;
right: 305px;
font-size: 15px;
}
</style>
</head>
<body>
<div class="phone">
</div>
<div class="signin">
<h1>Instagram</h1>
<form action="" method="">
<input type="text" name="username" value="username">
<br>
<input type="text" name="password" value="password">
<br>
<input type="submit" value="Log in">
</form>
<a class="forgot" href="#">Forgot?</a>
<div class="or">
OR
</div>
<div class="facebook">
<a href="#">Log in with Facebook</a>
</div>
</div>
<div class="signup">
Don't have an account? <a href="#">Sign up</a>
</div>
<div class="apps-buttons">
<p>Get the app.</p>
<img class="ios" src="https://instagramstatic-a.akamaihd.net/h1/images/appstore-install-badges/badge_ios_english-en.png/4b70f6fae447.png" alt="instagram iOS app" />
<img class="android" src="https://instagramstatic-a.akamaihd.net/h1/images/appstore-install-badges/english_get.png/74c874cf7dc5.png" alt="instagram android app" />
</div>
<ul class="footer">
<li>ABOUT US</li>
<li>SUPPORT</li>
<li>BLOG</li>
<li>PRESS</li>
<li>API</li>
<li>JOBS</li>
<li>PRIVACY</li>
<li>TERMS</li>
<li>LANGUAGE</li>
<li>© 2016 INSTAGRAM</li>
</ul>
</body>
</html>