-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.12 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Tabbed Content Section</title>
</head>
<body>
<div class="tabs-container">
<div class="tab-header">
<button class="tab-btn active" onclick="openTab(event, 'overview')">Overview</button>
<button class="tab-btn" onclick="event, openTab(event, 'info')">Info</button>
<button class="tab-btn" onclick="openTab(event, 'contact')">Contact</button>
</div>
<div id="overview" class="tab-content active">
<h3>Overview</h3>
<p>Welcome! This is the overview section where we summarize our main features.</p>
</div>
<div id="info" class="tab-content">
<h3>Information</h3>
<p>Here you can find detailed specifications and technical documentation.</p>
</div>
<div id="contact" class="tab-content">
<h3>Contact Us</h3>
<p>Reach out via email at support@example.com or follow our socials.</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>