forked from mohit512661/raviproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4thpage.html
150 lines (132 loc) · 4.86 KB
/
4thpage.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
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#margin{
width:100%;
height:600px;
border :1px
}
#logo{
width:100%;
height:80px;
border:1px ;
background-color:#00BF6F
}
body {
font-family: National2,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
font-size: 16px;
margin: 0;
background-color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#title{
width:100%;
height:550px;
background-color: aliceblue;
margin-top: -20px;
}
#nos{
width:40%;
height:100px;
border:1px ;
margin:auto
}
#nos>div{
width:25%;
height:80px;
float:left;
border:1px;
margin:10px;
margin-left:25px
}
.sm-input--stretch {
width: 100%;
height:45px
}
.sm-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;
}
.ent{
width:30%;
height:50px;
border:1px ;
margin:auto;
padding:30px;
}
.btn{
width:25%;
height:50px;
border:1px ;
margin:auto;
padding:30px;
}
body {
font-family: National2,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
font-size: 16px;
margin: 0;
background-color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<div id="margin">
<div id="logo">
<div>
<a href="homepage.html" >
<img style="margin-left:30px;margin-top:5px;width:70px;height:40px" id="png_logo" src="https://prod.smassets.net/assets/userweb/smlib.globaltemplates/10.18.2/assets/logo/surveymonkey_logo_dark.svg" alt="SurveyMonkey Logo"></a>
<button style="border-radius:5px;margin-bottom:10px;margin-left:800px;width:150px;height:30px;background-color:yellow;border:none">UPGRADE</button>
<button style="background-color: whitesmoke;margin-bottom:10px;margin-left:20px;width:150px;height:30px;border:none">CREATE SURVEY</button>
</div>
</div>
<div id="title">
<h1 style="text-align:center; text-align: center;
font-weight: 300;
padding-top: 90px;
color: #333E48">Easily create your first survey</h1>
<div id="nos">
<div class="1">
<div style="margin-left:40px;width:40px;height:40px;border-radius:100% ;border:1px solid black">
<p style="text-align:center;margin-top:9px;font-size:20px">1</p>
</div>
<p style="text-align:center">Add questions</p>
</div>
<div class="2">
<div style="margin-left:40px;width:40px;height:40px;border-radius:100% ;border:1px solid black">
<p style="text-align:center;margin-top:9px;font-size:20px">2</p>
</div>
<p style="text-align:center">Send survey</p>
</div>
<div class="3">
<div style="margin-left:40px;width:40px;height:40px;border-radius:100% ;border:1px solid black">
<p style="text-align:center;margin-top:9px;font-size:20px">3</p>
</div>
<p style="text-align:center">Analyze results</p>
</div>
</div>
<div class="ent">
<input id="create-title-input" class="sm-input sm-input--stretch error" type="text" name="create-title" placeholder="Enter a survey title" maxlength="250">
</div>
<div class="btn">
<button style="margin-left:75px;font-size:15px;width:200px;height:50px;background-color:#00BF6F ;color:WHITE">+ADD QUESTIONS</button>
</div>
</div>
</div>
</body>
</html>