-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (81 loc) · 1.48 KB
/
index.html
File metadata and controls
88 lines (81 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My College Website</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f6f8;
}
header {
background-color: #1e293b;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #334155;
padding: 10px;
text-align: center;
}
nav a {
color: white;
text-decoration: none;
margin: 0 15px;
font-size: 16px;
}
section {
padding: 30px;
}
.card {
background-color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 6px;
}
footer {
background-color: #1e293b;
color: white;
text-align: center;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>My College Website</h1>
<p>Computer Science Engineering</p>
</header>
<nav>
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Courses</a>
<a href="#">Contact</a>
</nav>
<section>
<div class="card">
<h2>About This Website</h2>
<p>This website is created as part of a web designing practical. It is hosted using free hosting and domain mapping.</p>
</div>
<div class="card">
<h2>Student Details</h2>
<p>Name: Utkarsh Shukla</p>
<p>Branch: CSE</p>
<p>Year: First Year</p>
</div>
<div class="card">
<h2>Technologies Used</h2>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>Free Hosting</li>
</ul>
</div>
</section>
<footer>
<p>© 2025 My College Website</p>
</footer>
</body>
</html>