-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (123 loc) · 3.57 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Amazon</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<style>
.img_1 {
height: 41px;
margin-top: 40px;
margin-bottom: 30px;
}
.extra-margin {
margin-top: 200px;
}
.btn {
width: 100%;
margin-top: 20px;
}
/* test */
form {
border: 1px solid lightgrey;
padding-left: 25px;
padding-right: 25px;
padding-top: 16px;
padding-bottom: 25px;
border-radius: 5px;
}
#words_1 {
font-weight: bold;
font-size: 14px;
}
#words_2 {
font-weight: bold;
font-size: 14px;
}
#words_3 {
font: 7px;
}
.sign-in {
margin-bottom: 50px;
font-size: 30px;
font-weight: bold;
}
.conditions {
font-size: 8px;
color: blue;
margin-top: 30px;
z-index: 2;
}
.footer_1 {
width: max;
height: 350px;
background-color: #fff;
margin-top: 30px;
}
#exampleCheck1 {
margin-left: 3px;
margin-top: 11px;
}
.keep-sign-in {
margin-left: 24px;
margin-top: 8px;
font-size: 14px;
}
#sign-in {
margin-bottom: 10px;
}
#grey-button {
background-color: lightgrey;
border: black;
}
</style>
</head>
<body>
<header>
<!--Amazon Image Logo-->
<div class="d-flex flex-row justify-content-center">
<div class="row">
<div class="col-md">
<img class="img_1" src="https://www.freelogodesign.org/file/app/blog/20180911090509731amazon_logo_RGB.jpg" alt="Amazon Logo"/>
</div><!--Col 1 End-->
</div><!--Row 1 End-->
</div><!--Container End-->
<!--Amazon Image Logo-->
</header>
<!--Form-->
<div class="d-flex flex-row justify-content-center">
<div class="row">
<div class="col-md">
<form action="https://www.amazon.in/gp/css/homepage.html">
<div class="sign-in">Sign In</div>
<div class="form-group">
<label id="words_1" for="exampleInputEmail1">Email(phone for mobile accounts)</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted"></small>
</div>
<div class="form-group">
<label id="words_2" for="exampleInputPassword1">Password                                     <a href="password.html">Forgot password? </a></label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
<div class="form-group">
<button type="submit" class="btn btn-warning" id="sign-in">Sign In</button>
<br/>
<input type="checkbox" class="form-check-input checkbox" id="exampleCheck1">
<p class="keep-sign-in">Keep me signed in. <a href="https://stupidlink.com">Details</a></p>
</div>
</div>
<div class="form-check">
</div>
<button type="button" class="btn btn-warning" id="grey-button">Create your Amazon account</button>
</form>
</div><!--Col 1 End-->
</div><!--Row 1 End-->
</div><!--Container End-->
<!--Form-->
<div class="d-flex flex-row justify-content-center footer_1">
<div class="row">
<div class="col">
<p class="conditions"><a>Conditions of Use       </a> <a>Privacy Notice      </a> <a>Help      </a></p>
</div><!--Footer Col 1 End-->
</div><!--Footer Row 1 End-->
</div>
</body>
</html>