forked from aditihonagekar/web-technology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
1_collegewebsite.html
89 lines (89 loc) · 2.5 KB
/
1_collegewebsite.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>College Information</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
background-color: #f0f0f0;
padding: 10px 0;
text-align: center;
}
nav a {
text-decoration: none;
color: #333;
padding: 0 10px;
}
nav a:hover {
color: #007bff;
}
section {
padding: 20px;
margin: 20px;
}
footer {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>College Information</h1>
</header>
<nav>
<a href="#about">About</a>
<a href="#courses">Courses</a>
<a href="#facilities">Facilities</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Us</h2>
<p>Welcome to our college! We strive to provide high-quality education and create a supportive learning environment for our students.</p>
</section>
<section id="courses">
<h2>Our Courses</h2>
<ul>
<li>Computer Science</li>
<li>Engineering</li>
<li>Business Administration</li>
<!-- Add more courses as needed -->
</ul>
</section>
<section id="facilities">
<h2>Facilities</h2>
<ul>
<li>State-of-the-art classrooms</li>
<li>Library with vast collection of books</li>
<li>Computer labs with latest equipment</li>
<!-- Add more facilities as needed -->
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or inquiries, feel free to contact us:</p>
<p>Email: [email protected]</p>
<p>Phone: +1234567890</p>
</section>
<!--<footer>
<p>© 2024 College Information. All rights reserved.</p>
</footer>-->
</body>
</html>