-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (89 loc) · 2.29 KB
/
index.html
File metadata and controls
105 lines (89 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HydPyHack 2025</title>
<style>
body {
margin: 0;
padding: 20px;
font-family: Arial, sans-serif;
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.header {
margin-bottom: 30px;
}
.airtable-container {
margin-bottom: 40px;
height: 700px;
}
.section {
margin-bottom: 40px;
}
.section h2 {
color: #333;
border-bottom: 2px solid #eee;
padding-bottom: 10px;
}
.volunteer-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 20px 0;
}
.volunteer-name {
flex: 0 0 200px;
font-size: 16px;
}
.volunteer-name span {
color: #666;
font-size: 14px;
}
.sponsor-section {
text-align: center;
}
.sponsor-logo {
max-width: 200px;
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>HydPyHack 2025 - 15 Feb 2025</h1>
</div>
<div class="airtable-container">
<iframe class="airtable-embed"
src="https://airtable.com/embed/appAp1zxS5U7BKXLj/shr26XRekWVOlijOr?viewControls=on"
frameborder="0" onmousewheel="" width="100%" height="100%"
style="background: transparent; border: 1px solid #ccc;">
</iframe>
</div>
<div class="section">
<h2>Volunteers</h2>
<div class="volunteer-list">
<div class="volunteer-name">Ashok Tankala</div>
<div class="volunteer-name">Bhanu K</div>
<div class="volunteer-name">Bharat</div>
<div class="volunteer-name">Bhushan</div>
<div class="volunteer-name">Chandra Shekhar</div>
<div class="volunteer-name">Kalyan</div>
<div class="volunteer-name">Praneet M</div>
<div class="volunteer-name">Prudhvi</div>
<div class="volunteer-name">Rajat</div>
</div>
</div>
<div class="section sponsor-section">
<h2>Venue Sponsor</h2>
<h3>Bilvantis Technologies</h3>
<p>Q-City, Gachibowli. <a href="https://maps.app.goo.gl/A2efWeFieB98Kusi6" target="_blank">Map</a></p>
</div>
</div>
</body>
</html>