forked from mohit512661/raviproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.html
172 lines (149 loc) · 5.48 KB
/
project.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
166
167
168
169
170
171
172
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body{
font-family: National2,"Helvetica Neue",Helvetica,Arial,sans-serif
}
.account{
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 4% 27% 2% 20%;
flex-basis: 40%;
text-align: right;
flex-flow: row;
gap: 35%;
}
.padding{
padding: 0;
}
#form_cont{
margin-left: 20%;
background-color: #edeeee;
padding: 32px;
border-radius: 2px;
height: 550px;
width: 350px;
}
.input{
border: 1px solid #D0D2D3;
font-size: 15px;
color: #333E48;
border-radius: 2px;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
box-shadow: none;
background-color: #fff;
padding: 8px 12px;
line-height: 1.4;
}
.aTag{
color: #007FAA;
}
.text_cont{
padding: 32px;
border-radius: 2px;
border: 1px solid black;
font-family: National2,"Helvetica Neue",Helvetica,Arial,sans-serif;
color: #333E48;
margin: 16px 25% 0px 50%;
padding: 25px 25px 25px 25px;
height: 550px;
text-align: left;
}
.font1{
font-size: 34px;
line-height: 1.32;
font-weight: 300;
}
.para{
margin: 50px 0 75px 0;
}
.btn{
display: block;
width: 100%;
margin: 0 auto;
padding: 8px 24px;
line-height: 1.5;
font-size: 15px;
border-color: #00BF6F;
background-color: #00BF6F;
}
.google{
background-image: url(/assets/userweb/userweb/326.0.0/assets/images/google.png)
}
#img{
width: 200px;
}
.header{
display: flex;
flex-grow: 1;
}
.sign-up{
margin-left: 70%;
}
#img2{
width: 150px;
}
#grid{
display: grid;
grid-gap: 20px;
grid-template-columns: auto auto;
}
</style>
</head>
<body>
<div class="header">
<img style="margin-left:7%" id="img" src="https://prod.smassets.net/assets/userweb/smlib.globaltemplates/10.18.1/assets/logo/surveymonkey_logo.svg"/>
<button class="sign-up">Sign Up</button>
</div>
<div class="account">
<div>
<h1 class="font-family ">Log in to your account</h1>
</div>
<div class="padding">
<p>Don't have an account?</p>
<h5 style="margin-top: 0; color: #007FAA;">sign Up</h5>
</div>
</div>
<div id="grid">
<div class="login">
<form id="form_cont">
<label for="userName">Enter your username</label> <br><br>
<input size="35" class="input" id="userName" type="text"/>
<br><br><br>
<label for="password">Enter your password</Em></label><br><br>
<input size="35" class="input" id="password" type="password" >
<br><br>
<input type="checkbox"> Remember me
<br><br>
<a class="aTag" href="https://www.surveymonkey.com/user/forgot-password/">Forgot username or password?</a>
<br><br>
<a class="aTag" href="https://www.surveymonkey.com/user/sign-in/sso/?ut_source=sem_lp&ut_source2=sem&ut_source3=megamenu">Log in with SSO</a>
<br><br><br>
<a href="https://www.youtube.com/"><button class="btn">Login</button></a>
<p id="para1"></p>
<br>
<p style="text-align: center; font-size: 20px;">or</p>
<p style="text-align: center; font-size: 15px;">Log in with your Office 365, LinkedIn, Facebook, Google, or Apple Account</p>
</form>
</div>
<div class="text_cont">
<div class="font1">
Know where you really stand with Benchmarks
</div>
<div>
<p class="para"> SurveyMonkey Audience has millions of qualified respondents ready to take your surveys. Get responses in 2 days</p>
</div>
<div>
<img id="img2" src="https://prod.smassets.net/assets/usercontentsvc/usercontentsvc/204.17.0/assets/UCS_Sign_In_Audience-color.svg">
</div>
</div>
</div>
</body>
</html>