-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtech.html
More file actions
144 lines (137 loc) · 4.08 KB
/
tech.html
File metadata and controls
144 lines (137 loc) · 4.08 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tech Conference 2026</title>
</head>
<body>
<header>
<h1>Tech Conference 2026</h1>
<p>Future-ready ideas, practical AI, cloud-native engineering, and product innovation.</p>
<nav aria-label="Primary">
<ul>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#tickets">Tickets</a></li>
<li><a href="#media">Media</a></li>
<li><a href="#venue">Venue</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About The Event</h2>
<p>
Join 4,000+ developers, founders, and tech leaders in San Francisco from
April 14-16, 2026 for keynotes, workshops, and networking sessions.
</p>
</section>
<div class="grid">
<article id="schedule">
<h2>Conference Schedule</h2>
<table>
<caption>Day 1 Highlights</caption>
<thead>
<tr>
<th>Time</th>
<th>Session</th>
<th>Speaker</th>
<th>Track</th>
</tr>
</thead>
<tbody>
<tr>
<td>09:00</td>
<td>Opening Keynote: Building for 2030</td>
<td>Dr. Maya Brooks</td>
<td>Vision</td>
</tr>
<tr>
<td>11:00</td>
<td>Scaling AI in Production</td>
<td>Ravi Chen</td>
<td>Engineering</td>
</tr>
<tr>
<td>14:00</td>
<td>Secure APIs at Enterprise Scale</td>
<td>Lina Carter</td>
<td>Security</td>
</tr>
<tr>
<td>16:00</td>
<td>DevTools Showcase</td>
<td>Panel</td>
<td>Product</td>
</tr>
</tbody>
</table>
</article>
<aside id="tickets" aria-labelledby="tickets-heading">
<h2 id="tickets-heading">Ticket Plans</h2>
<table>
<thead>
<tr>
<th>Pass</th>
<th>Price</th>
<th>Access</th>
</tr>
</thead>
<tbody>
<tr>
<td>Starter</td>
<td>$99</td>
<td>Main Stage</td>
</tr>
<tr>
<td>Pro</td>
<td>$249</td>
<td>All Talks + Workshops</td>
</tr>
<tr>
<td>VIP</td>
<td>$499</td>
<td>All Access + Lounge</td>
</tr>
</tbody>
</table>
</aside>
</div>
<section id="media">
<h2>Event Media</h2>
<div class="media-wrap">
<div>
<h3>Promo Video</h3>
<video controls poster="https://dummyimage.com/640x360/000/fff&text=Tech+Conference+2026">
<source src="https://interactive-examples.mdn.mozilla.net/media/cc0-videos/flower.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</div>
<div>
<h3>Podcast Preview</h3>
<audio controls>
<source src="https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<p>Listen to a short audio teaser from this year’s keynote lineup.</p>
</div>
</div>
</section>
<section id="venue">
<h2>Venue & Live Stream</h2>
<iframe
title="Conference Venue Map"
height="360"
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
src="https://www.openstreetmap.org/export/embed.html?bbox=-122.4324%2C37.7718%2C-122.4058%2C37.7897&layer=mapnik"
></iframe>
</section>
</main>
<footer>
<p>© 2026 Tech Conference. All rights reserved.</p>
<p>Email: hello@techconf2026.example | Phone: +1 (555) 010-2026</p>
</footer>
</body>
</html>