-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (103 loc) · 5.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no; minimal-ui">
<link rel="stylesheet" type="text/css" href="css/grid.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.js"></script>
</head>
<body>
<div class="wrapper">
<header class="header-logo">
<img src="images/logo.png">
</header>
<section class="banner-section">
<div class="row eq-parent">
<div class="columns medium-6 eq-child">
<img src="images/men1.png" alt="PLEASURE MEETING YOU">
</div>
<div class="columns medium-6 eq-child">
<div class="banner-title vertical-center">
<h2>PLEASURE MEETING YOU HERE.</h2>
<h3>LET'S GET TO KNOW YOU A LITTLE<br>BEFORE WE MEET.</h3>
</div>
</div>
</div>
</section>
<section class="home-section2">
<div class="row eq-parent">
<div class="columns medium-6 eq-child">
<div class="vertical-center question-box">
<label class="question">What's your Occupation?</label>
<select>
<option value=""></option>
</select>
<label class="question">Which bracket would your individual annual income fall under?</label>
<select>
<option value=""></option>
</select>
<label class="question">What's your idea of a post work evening plan?</label>
<div class="radio-style"><input type="radio" name="q1" id="idq1-1"><label for="idq1-1"> Shopping spree at a cool mall</label></div><br>
<div class="radio-style"><input type="radio" name="q1" id="idq1-2"><label for="idq1-2"> A quiet dinner at home</label></div><br>
<div class="radio-style"><input type="radio" name="q1" id="idq1-3"><label for="idq1-3"> Drinks with friends at the most happening club in town</label></div><br>
<div class="radio-style"><input type="radio" name="q1" id="idq1-4"><label for="idq1-4"> Fine dining at a popular restaurant</label></div>
<label class="question">Where do you like to vacation?</label>
<div class="radio-style"><input type="radio" name="q2" id="idq2-1"><label for="idq2-1"> A luxury resort in the hills in india</label></div><br>
<label class="option-w-textbox">
<div class="radio-style"><input type="radio" name="q2" id="idq2-2"><label for="idq2-2"> A cool destination adroad</label></div>
<span><input type="text"></span>
</label>
<label class="option-w-textbox">
<div class="radio-style"><input type="radio" name="q2" id="idq2-3"><label for="idq2-3"> None of the above </label></div>
<span><input type="text"></span>
</label>
</div>
</div>
<div class="columns medium-6 text-right eq-child">
<img src="images/men2.png">
</div>
</div>
</section>
<section class="home-section3">
<div class="row eq-parent">
<div class="columns medium-6 eq-child">
<img src="images/men3.png">
</div>
<div class="columns medium-6 eq-child">
<div class="vertical-center question-box">
<label class="question">How often do you shop?</label>
<div class="radio-style"><input type="radio" name="q3" id="idq3-1"><label for="idq3-1"> It's a hoddy, every second day</label></div><br>
<div class="radio-style"><input type="radio" name="q3" id="idq3-2"><label for="idq3-2"> Every weekend</label></div><br>
<div class="radio-style"><input type="radio" name="q3" id="idq3-3"><label for="idq3-3">
Twice a month
</label></div><br>
<div class="radio-style"><input type="radio" name="q3" id="idq3-4"><label for="idq3-4"> Once a month</label></div><br>
<div class="radio-style"><input type="radio" name="q3" id="idq3-5"><label for="idq3-5"> Once in a few month</label></div>
<label class="question">What are your preferred brands to shop?</label>
<textarea name="" rows="2"></textarea>
<label class="question">How world you define your personal style from the following selection?</label>
<div class="radio-style"><input type="radio" name="q4" id="idq4-1"><label for="idq4-1">
I dig Crisp formals
</label></div><br>
<div class="radio-style"><input type="radio" name="q4" id="idq4-2"><label for="idq4-2">
I prefer Semi Casuals
</label></div><br>
<div class="radio-style"><input type="radio" name="q4" id="idq4-3"><label for="idq4-3">
Comfortable Cool Casuals
</label></div>
<div class="clearfix text-center m-t30"><button type="submit" class="cta-button">Submit</button></div>
</div>
</div>
</div>
</section>
<footer class="footer">
Powered by <img src="images/footer-logo.png">
</footer>
</div>
<script type="text/javascript" src="js/plugins.js"></script>
<script type="text/javascript" src="js/site.js"></script>
</body>
</html>