forked from pythonindia/inpycon2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
157 lines (137 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PyCon India 2023</title>
<link
rel="stylesheet"
href="/_next/static/css/e306dcba156279b0.css"
data-precedence="next.js"
/>
<link rel="icon" href="/_next/static/media/metadata/favicon.99fecd7c.ico" type="image/x-icon" sizes="any" />
</head>
<body>
<div class="wrapper">
<div class="container">
<div class="header">
<h2>Announcing our premier Python Conference in India.</h2>
</div>
<div class="content">
<h1>
<span class="pycon">Py</span
><span class="india">Con </span>India <span>2023</span>
</h1>
<p class="date">Hyderabad, 29 Sept - 02 Oct</p>
<p class="description">
PyCon India 2023 is the premier conference for Python enthusiasts
and professionals, offering an unparalleled opportunity to dive deep
into the world of Python and explore its limitless potential.
</p>
<p class="description">
From exciting keynotes and workshops to interactive sessions and
networking events, this four-day event promises to be an
unforgettable experience for anyone interested in the latest
developments in Python. Join us and be a part of the thriving Python
community, as we come together to learn, grow, and innovate!<br /><br />
Stay tuned for more updates!
</p>
<div class="button-container">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdmlVnxDBENiXs17hQeUtgqOZdcsWI7lmQpXq5m9K-e0eS52Q/viewform" class="button">Become a Volunteer</a>
<br/><br/><br/>
<a href="https://mail.python.org/mailman/listinfo/inpycon">Join PyCon India Mailing List</a> |
<a href="https://www.linkedin.com/company/pyconindia/">LinkedIn</a> |
<a href="https://twitter.com/pyconindia">Twitter</a> |
<a href="https://www.facebook.com/PyConIndia/">Facebook</a> |
<a href="https://www.instagram.com/__pyconindia__/">Instagram</a>
</div>
</div>
</div>
</div>
</body>
<style>
body {
font-family: sans-serif;
margin: 0;
}
.wrapper {
background-color: #202e44;
color: #fff;
padding: 20px;
min-height: 100vh; /* Changed height to min-height */
display: flex;
align-items: center;
justify-content: center;
}
.container {
max-width: 800px;
margin: 0 auto
}
.header {
text-align: center;
margin-bottom: 30px;
}
.pycon {
color: #79c96d;
}
.india {
color: #ffce2b;
}
.content {
text-align: center;
}
h1 {
font-size: 6rem;
font-weight: bold;
margin-bottom: 20px;
}
.date {
font-weight: bold;
font-size: 2rem;
margin-bottom: 30px;
}
.description {
font-size: 1.6rem;
line-height: 1.6;
margin-bottom: 30px;
}
.button-container {
margin-top: 30px;
}
a {
color: #fff;
}
a:hover {
color: #000;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #79c96d;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-size: 1.4rem;
font-weight: bold;
text-transform: uppercase;
transition: all 0.3s ease;
margin-right: 10px;
}
.button:hover {
background-color: #fff;
color: #000;
}
/* Mobile styles */
@media screen and (max-width: 480px) {
h1 {
font-size: 4rem;
}
.date {
font-size: 1.6rem;
}
.description {
font-size: 1.2rem;
}
}
</style>
</html>