-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
194 lines (159 loc) · 6.55 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<title>Microsite</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<style>
/* @font-face {
font-family: 'Myriad';
src: url('./asset/MyriadPro-Regular.woff') format('woff'),
} */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap'); */
@font-face {
font-family: 'Regular';
src: url('./asset/QualcommNext-Regular.otf') format('opentype');
}
@font-face {
font-family: 'Medium';
src: url('./asset/QualcommNext-Medium.otf') format('opentype');
}
body {
font-family: 'Regular', sans-serif;
font-weight: normal;
font-style: normal;
background-color: #2853dd;
}
#heading {
font-family: 'Regular', sans-serif;
font-weight: bolder;
font-style: normal;
}
#register {
font-family: 'Medium', sans-serif;
font-weight: bold;
font-style: normal;
}
label {
font-family: 'Medium', sans-serif;
font-weight: bold;
font-style: normal;
}
input {
font-family: 'Medium', sans-serif;
font-weight: thin;
font-style: normal;
}
p {
font-family: 'Regular', sans-serif;
font-weight: thin;
font-style: normal;
}
#box1 {
color: black;
/* box-shadow: 0px 0px 10px 0px; */
box-shadow: inset 0px -10px 8px -10px #000000;
}
#box2 {
color: black;
/* box-shadow: 0px 0px 10px 0px; */
box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.3);
box-shadow: inset 0px -11px 8px -10px #000000;
}
body {
color: black;
/* box-shadow: 0px 0px 0px 0px; */
}
</style>
</head>
<body class="overflow-x-hidden pb-8 h-screen">
<div class="w-screen ">
<div
class="flex justify-center px-4 py-2 items-center h-full md:py-4 xl:px-8 bg-white w-screen shadow-black shadow-2xl"
id="box1">
<p class="text-xs md:text-2xl xl:text-3xl text-blue-700 font-bold shadow-2xl shadow-black" id="heading">Qualcomm
Future Tech India -
Wireless Broadband and Connectivity Event</p>
</div>
<div class="h-6 bg-blue-400 w-screen shadow-2xl" id="box2"></div>
<!-- <img src="./asset/group3.png" alt="" class="max-w-full h-auto object-cover w-screen"> -->
</div>
<div id="body" class="bg-cover w-screen bg-blue flex justify-center items-start mt-6">
<form action="/send-email" method="POST" >
<h1 class="mb-8 text-2xl text-center text-white" id="register">Registration</h1>
<div class="mb-4">
<label for="firstname" class="block text-lg font-bold mb-2 text-white">
First Name:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="firstname" type="text" placeholder="First Name" required name="firstname">
</div>
<div class="mb-4">
<label for="lastname" class="block text-lg font-bold mb-2 text-white">
Last Name:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="lastname" type="text" placeholder="Last Name" name="lastname" required>
</div>
<div class="mb-4">
<label for="designation" class="block text-lg font-bold mb-2 text-white">
Designation:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="designation" type="text" placeholder="Designation" name="designation" required>
</div>
<div class="mb-4">
<label for="company" class="block text-lg font-bold mb-2 text-white">
Company:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="company" type="text" placeholder="Company" required name="company">
</div>
<div class="mb-4">
<label for="phone" class="block text-lg font-bold mb-2 text-white">
Contact Number:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="phone" type="text" placeholder="Phone Number" required name="phone">
</div>
<div class="mb-4">
<label for="email" class="block text-lg font-bold mb-2 text-white">
Email Address:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="email" type="text" placeholder="Email Address" required name="email">
</div>
<!-- <div class="mb-4">
<label for="iot" class="block text-lg font-bold mb-2 text-white">
Areas Of Interest Within IoT:
</label>
<input
class="shadow appearance-none border rounded py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline w-80 xl:w-96 md:w-96"
id="iot" type="text" placeholder="Areas Of Interest Within IoT" name="iot" required>
</div> -->
<div>
<input type="checkbox" required>
<p class="xl:w-96 md:w-96 w-80 text-white">Your privacy is important to us. By checking this box, you agree to
receive marketing communications from Qualcomm Technologies, Inc. about its products and innovations.</p>
</div>
<div>
<input type="checkbox" required>
<p class="xl:w-96 md:w-96 w-80 text-white"> I acknowledge that I have read and understood the Privacy Policy,
and I am aware of my rights regarding my personal data as described therein
We will process your personal information according to our Privacy Policy:<a
href="https://www.qualcomm.com/site/privacy"><u> https://www.qualcomm.com/site/privacy </u></a></p>
</div>
<input type="submit" value="Submit" id="button"
class="shadow appearance-none border rounded w-80 xl:w-96 md:w-96 py-4 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline">
</form>
</div>
<!-- rest the script -->
<!-- script ot required -->
</body>
</html>