-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththankyou.html
More file actions
111 lines (90 loc) · 2.92 KB
/
thankyou.html
File metadata and controls
111 lines (90 loc) · 2.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129240689-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-129240689-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<link rel="stylesheet" href="./css/font-awesome/css/font-awesome.min.css">
<!-- Owl Carousel CSS and Theme -->
<link rel="stylesheet" href="./css/OwlCarousel2-2.2.1/dist/assets/owl.carousel.min.css">
<link rel="stylesheet" href="./css/OwlCarousel2-2.2.1/dist/assets/owl.theme.default.css">
<!-- Local CSS file -->
<style>
body {
background: rgb(255, 235, 206);
font-weight: medium; }
.container {
background: #ffffff;
min-height: 200px;
min-width: 200px;
margin-top: 40px;
margin-bottom: 40px;
padding-bottom: 120px;
border-radius: 6px;
-webkit-box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2); }
.vc-heading {
text-align: center;
padding: 40px 24px 24px 24px; }
.bolder {
font-weight: bold;
margin-left: .2em; }
.vc-caption {
text-align: center;
margin-top: 32px;
font-size: 1.3em; }
.vc-subheadings {
padding-left: 40px;
padding-top: 40px; }
.vc-subsubheadings {
padding-left: 40px;
padding-top: 40px; }
.logo{
max-width: 300px;
}
.logodiv{
position: relative;
float: right;
bottom: 116px;
right: 134px;
}
@media(max-width: 930px) {
.logodiv {
position: relative;
right: 22%;
bottom: -15px;
}
}
</style>
<title>TEDxAJCE</title>
</head>
<body>
<div class="container">
<h1 class="vc-heading">
<!-- <span class="colorer">TEDx</span> -->
THANK YOU FOR YOUR TICKET PURCHASE!
</h1>
<p class="vc-caption">
We look forward to seeing you at TEDxAJCE on May 7th at 9:00am.
Your tickets will be sent to your registered mail; please be ready to present your ticket at the registration desk.
</p>
<h6 class="vc-subsubheadings">For more information, contact:</h6>
<ul>
<li>Bobby Isac (Organizer)<br>+91 8089381352 <br>[email protected]</li>
<li>Nitty Ann Abraham (Co-Organizer)<br>[email protected]</li>
</ul>
<div class="logodiv" >
<img class="logo" src="./img/logo-black.png">
</div>
</div>
</body>
</html>