-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathterms.html
299 lines (273 loc) · 13.7 KB
/
terms.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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="en">
<head>
<title>Terms of Use</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link href="favicon.ico?v=6a" rel="icon" type="image/x-icon">
<link rel="manifest" type="application/manifest+json" href="manifest.json">
<meta name="theme-color" content="#4b0966" />
<meta name="author" content="Alok Prateek">
<meta name="description" content="Alok Prateek, a full-stack web developer and graphic designer from Delhi, India.">
<meta property="og:type" content="website" />
<meta property="og:title" name="title" content="Alok Prateek">
<meta property="og:url" name="url" content="https://alokprateek.in/cv/">
<meta property="og:site_name" name="sit_name" content="Alok Prateek">
<meta property="og:description" name="aboutSite"
content="Alok Prateek, a full-stack web developer and graphic designer from Delhi, India.">
<meta property="og:img" name="img" content="images/avatar2.png">
<meta property="og:image" name="imgfb" content="images/avatar2.png">
<link rel="stylesheet" type="text/css" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/vendor/fab/fab.min.css" />
<style>
img {
max-width: 100%;
height: auto;
}
body {
display: grid;
grid-template-areas:
"header info info"
"article article article"
"footer footer footer";
/*grid-template-rows: 80px 1fr 70px;*/
grid-template-columns: 2.5fr 4fr 1.5fr;
grid-row-gap: 10px;
grid-column-gap: 10px;
margin: 0;
padding-top: 2rem;
padding-left: 5rem;
padding-right: 5rem;
}
header,
footer,
article,
div {
padding: 1.2em;
/*background: rgb(202, 202, 201);*/
}
#pageHeader {
grid-area: header;
font-size: larger;
background-color: #4b0966;
text-align-last: end;
}
#pageHeader h1 {
display: inline-block;
color: #fff;
vertical-align: text-top;
}
#pageFooter {
grid-area: footer;
text-align: center;
}
#mainArticle {
grid-area: article;
}
#info {
grid-area: info;
display: grid;
grid-template-areas:
"pic names";
/*grid-template-rows: 80px 1fr 70px;*/
grid-template-columns: 1fr 1fr;
grid-row-gap: 10px;
grid-column-gap: 10px;
padding: 0 0 0 0;
}
#sitePic {
grid-area: pic;
padding: 0 0 0 0;
text-align: right;
}
#sitePic img {
border-radius: 90%;
border-style: solid;
}
#nameContact {
grid-area: names;
text-align: left;
align-items: stretch;
}
/* Stack the layout on small devices/viewports. */
@media all and (max-width: 650px) {
body {
grid-template-areas:
"header"
"info"
"article"
"footer";
/*grid-template-rows: 80px 1fr 70px 1fr 70px;*/
grid-template-columns: 1fr;
padding-left: 2rem;
padding-right: 2rem;
}
#info {
grid-area: info;
display: grid;
grid-template-areas:
"names pic";
/*grid-template-rows: 80px 1fr 70px;*/
grid-template-columns: 2fr 1fr;
}
#sitePic {
grid-area: pic;
padding: 0 0 0 0;
text-align: left;
}
#pageHeader {
grid-area: header;
text-align-last: start;
}
}
@media all and (min-width: 650px) and (max-width: 800px) {
#info {
grid-area: info;
display: grid;
grid-template-areas:
"pic"
"names";
/*grid-template-rows: 80px 1fr 70px;*/
grid-template-columns: 1fr;
}
#sitePic {
grid-area: pic;
padding: 0 0 0 0;
text-align: left;
}
}
@media all and (max-width: 400px) {
html {
font-size: x-small;
}
}
a {
text-decoration: underline !important;
}
</style>
</head>
<body>
<a name="top"></a>
<ul id="menu" class="mfb-component--bl mfb-slidein-spring " data-mfb-toggle="click" style="display: block;">
<li class="mfb-component__wrap">
<a href="#" class="mfb-component__button--main" aria-label="FAB button to open and close menu">
<i class="mfb-component__main-icon--resting fa fa-plus"></i>
<i class="mfb-component__main-icon--active fa fa-close"></i>
</a>
<ul class="mfb-component__list">
<li>
<a href="index.html" data-mfb-label="Go Back" class="mfb-component__button--child"
aria-label="FAB button to go back">
<i class="mfb-component__child-icon fa fa-reply"></i>
</a>
</li>
<li>
<a href="#top" data-mfb-label="Go to Top" class="mfb-component__button--child"
aria-label="FAB button to go to top">
<i class="mfb-component__child-icon fa fa-arrow-up"></i>
</a>
</li>
<li>
<a href="mailto:[email protected]" data-mfb-label="Hire Me" class="mfb-component__button--child"
aria-label="Send a mail to hire me.">
<i class="mfb-component__child-icon fa fa-envelope-open-o"></i>
</a>
</li>
</ul>
</li>
</ul>
<header id="pageHeader">
<h1>Terms of Service</h1>
</header>
<div id="info">
</div>
<article id="mainArticle">
<hr>
<h3>1. Terms</h3>
<p>By accessing the website at <a href="https://alokprateek.in">https://alokprateek.in</a>, you are agreeing to
be bound by these terms of service, all applicable laws and regulations, and agree that you are responsible
for compliance with any applicable local laws. If you do not agree with any of these terms, you are
prohibited from using or accessing this site. The materials contained in this website are protected by
applicable copyright and trademark law.</p>
<h3>2. Use License</h3>
<ol type="a">
<li>Permission is granted to temporarily download one copy of the materials (information or software) on my
portfolio website for personal, non-commercial transitory viewing only. This is the grant of a license,
not a transfer of title, and under this license you may not:
<ol type="i">
<li>modify or copy the materials;</li>
<li>use the materials for any commercial purpose, or for any public display (commercial or
non-commercial);</li>
<li>attempt to decompile or reverse engineer any software contained on my portfolio website;</li>
<li>remove any copyright or other proprietary notations from the materials; or</li>
<li>transfer the materials to another person or "mirror" the materials on any other server.</li>
</ol>
</li>
<li>This license shall automatically terminate if you violate any of these restrictions and may be
terminated by Alok Prateek at any time. Upon terminating your viewing of these materials or upon the
termination of this license, you must destroy any downloaded materials in your possession whether in
electronic or printed format.</li>
<li>For purpose of displaying content found on this website, appropriate content can be found on <a
href="pressdoc.html">Press Resources page</a>. You should preferably use these resources by linking
it. If it is not possible, a download button has been provided to download these resources. </li>
</ol>
<h3>3. Disclaimer</h3>
<ol type="a">
<li>The materials on my portfolio website are provided on an 'as is' basis. Alok Prateek makes no
warranties, expressed or implied, and hereby disclaims and negates all other warranties including,
without limitation, implied warranties or conditions of merchantability, fitness for a particular
purpose, or non-infringement of intellectual property or other violation of rights.</li>
<li>Further, Alok Prateek does not warrant or make any representations concerning the accuracy, likely
results, or reliability of the use of the materials on its website or otherwise relating to such
materials or on any sites linked to this site.</li>
</ol>
<h3>4. Limitations</h3>
<p>In no event shall Alok Prateek be liable for any damages (including, without limitation, damages for loss of
data or profit, or due to business interruption) arising out of the use or inability to use the materials on
my portfolio website, even if Alok Prateek or an authorized representative has been notified orally or in
writing of the possibility of such damage. Because jurisdiction of Indian Courts does not allow limitations
on implied warranties, or limitations of liability for consequential or incidental damages, these
limitations apply to you.</p>
<h3>5. Accuracy of materials</h3>
<p>The materials appearing on my portfolio website could include technical, typographical, or photographic
errors. Alok Prateek does not warrant that any of the materials on its website are accurate, complete or
current. Alok Prateek may make changes to the materials contained on its website at any time without notice.
However Alok Prateek does not make any commitment to update the materials.</p>
<h3>6. Links</h3>
<p>Alok Prateek has reviewed all of the sites linked to its website and but is not responsible for the contents
of any such linked site. The inclusion of any link does not imply endorsement by Alok Prateek of the site.
Use of any such linked website is at the user's own risk.</p>
<h3>7. Modifications</h3>
<p>Alok Prateek may revise these terms of service for its website at any time without notice. By using this
website you are agreeing to be bound by the then current version of these terms of service.</p>
<h3>8. Governing Law</h3>
<p>These terms and conditions are governed by and construed in accordance with the laws of India and you
irrevocably submit to the exclusive jurisdiction of the courts in the State of India.</p>
<h3>Google Analytics</h3>
<p>This website uses Google Analytics, a web analytics service provided by Google, Inc. (“Google”). Google
Analytics uses “cookies”, which are text files placed on your computer, to help the website analyze how
users use the site.</p>
<p>The information generated by the cookie about your use of the website (including your IP address) will be
transmitted to and stored by Google on servers in the United States. In case of activation of the IP
anonymization, Google will truncate/anonymize the last octet of the IP address for Member States of the
European Union as well as for other parties to the Agreement on the European Economic Area. Only in
exceptional cases, the full IP address is sent to and shortened by Google servers in the USA. On behalf of
the website provider Google will use this information for the purpose of evaluating your use of the website,
compiling reports on website activity for website operators and providing other services relating to website
activity and internet usage to the website provider. Google will not associate your IP address with any
other data held by Google.</p>
<p>You may refuse the use of cookies by selecting the appropriate settings on your browser. However, please note
that if you do this, you may not be able to use the full functionality of this website. Furthermore you can
prevent Google’s collection and use of data (cookies and IP address) by downloading and installing the <a
href="https://tools.google.com/dlpage/gaoptout?hl=en-GB" target="_blank">browser plug-in</a> available
under <a href="https://tools.google.com/dlpage/gaoptout?hl=en-GB"
target="_blank">https://tools.google.com/dlpage/gaoptout?hl=en-GB</a>.</p>
<p><strong><em>This policy is effective as of 2<sup>nd</sup> of June, 2018.</em></strong></p>
</div>
<script src="assets/vendor/jquery/jquery-1.12.3.min.js"></script>
<script src="assets/vendor/fab/fab.min.js"></script>
<script async src="assets/js/storescroll.js"></script>
</body>
</html>