-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (66 loc) · 2.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Website</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./Images/Logo/favicon.ico" type="image/x-icon">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
</head>
<body>
<!-- Header with logo and title -->
<header>
<img src="Images/Logo/iitb.png" alt="Logo IITB">
<div>
<h1>ENVIRONMENTAL SCIENCE AND ENGINEERING DEPARTMENT</h1>
<h1 style="color: cyan;">IIT BOMBAY</h1>
</div>
<img src="Images/Logo/esed.jpg" alt="Logo ESED">
</header>
<!-- Navigation bar with buttons -->
<nav>
<button onclick="showContent('home')">Home</button>
<button onclick="showContent('location')">Location</button>
<button onclick="showContent('caplab')">CapLab</button>
<button onclick="showContent('contact')">Contact Us</button>
</nav>
<!-- Main Content Area with professional content wrapper -->
<div class="main-content">
<div class="content-wrapper" id="content">
<div class="flyer">
<img src="Images/flyer.jpg" alt="flyer">
</div>
<h2>Welcome to the Event</h2>
<section style="margin-top: 20px;">
<h3>About the Department</h3>
<p>The Department of Computer Science and Engineering at IIT Bombay is known for cutting-edge research and world-class education. Our faculty and students engage in solving real-world problems in various fields, including artificial intelligence, data science, cybersecurity, and more.</p>
</section>
<section style="margin-top: 20px;">
<h3>About the Event</h3>
<p>This event brings together leading academics, researchers, and industry professionals to explore the latest advancements in technology and research.</p>
</section>
<section style="margin-top: 20px;">
<h3>Venue: XYZ Auditorium, IIT Bombay</h3>
</section>
<section style="margin-top: 20px;">
<h3>Date: March 25-27, 2024</h3>
</section>
<section style="margin-top: 30px; text-align: center;">
<div style="border: 2px solid #004d99; padding: 20px; border-radius: 10px;">
<h3>Register Now
<a href="" target="_blank" style="background-color: #004d99; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px;">Register Here</a>
</h3>
</div>
</section>
</div>
</div>
<!-- Footer with contact info
<footer>
<p>Contact Us: event@iitb.ac.in</p>
<p>© 2024 IIT Bombay</p>
</footer> -->
<!-- JavaScript to change content -->
<script src="script.js"></script>
</body>
</html>