-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
72 lines (67 loc) · 2.01 KB
/
About.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="CSS/home.css">
<title>About</title>
<style>
/* CSS styles for the section */
section {
background-color: #f2f2f2;
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
}
h2 {
color: #333333;
font-size: 24px;
margin-bottom: 10px;
}
p {
color: #666666;
font-size: 16px;
line-height: 1.5;
}
</style>
</head>
<body>
<a href="https://www.isquareit.edu.in/" target="_blank"> <img class="head12" src="images/i2it.png" alt=""></a>
<header>
<nav class="navbar">
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="About.html">About</a>
</li>
<li>
<h1 class="nav1">Event management system</h1>
</li>
</ul>
</nav>
</header>
<section>
<h2>Upcoming Events</h2>
<p>Here are some of the exciting events coming up in our college:</p>
<ul>
<li>Annual Sports Day - June 10th, 2023</li>
<li>Music Festival - July 5th, 2023</li>
<li>Tech Expo - August 15th, 2023</li>
<li>Cultural Night - September 20th, 2023</li>
</ul>
</section>
<section>
<h2>Past Events</h2>
<p>Take a look at the successful events we've organized in the past:</p>
<ul>
<li>Science Fair - May 2nd, 2023</li>
<li>Art Exhibition - April 15th, 2023</li>
<li>Workshop on Entrepreneurship - March 25th, 2023</li>
<li>Music Concert - February 8th, 2023</li>
</ul>
</section>
</body>
</html>