-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
133 lines (119 loc) · 2.81 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<title>About Us</title>
<style> body {
font-family: Arial, sans-serif;
background-color: #222;
color: #fff;
margin: 0;
padding: 0;
background-image: linear-gradient(to bottom, #222 50%, #000 50%);
background-size: 100% 200%;
background-position: top;
animation: moveBackground 30s linear infinite;
}
@keyframes moveBackground {
0% {
background-position: top;
}
100% {
background-position: bottom;
}
}
header {
background-color: #444;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 999;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
display: inline-block;
margin-right: 20px;
}
a {
color: #fff;
text-decoration: none;
font-size: 18px;
}
a:hover {
color: #aaa;
}
main {
padding: 200px 50px 50px;
text-align: center;
}
h1 {
font-size: 72px;
margin-bottom: 40px;
}
p {
font-size: 32px;
line-height: 1.5;
margin-bottom: 40px;
}
.cta {
display: inline-block;
background-color: #ff6363;
color: #fff;
padding: 20px 40px;
border-radius: 50px;
font-size: 24px;
text-transform: uppercase;
letter-spacing: 2px;
text-decoration: none;
transition: background-color 0.3s ease-in-out;
}
.cta:hover {
background-color: #ff4444;
}
</style>>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>About US</h1>
<p>____________________</p>
<p>
SB02 Omkar Mane
<br>
Second Year Student at International Institute Of Information Technology, Pune in Computer Engineering Branch.
</p>
<br>
<p>
SB11 Prathamesh Nagawade
<br>
Second Year Student at International Institute Of Information Technology, Pune in Computer Engineering Branch.
</p>
<br>
<p>
SB35 Sahil Phadtare
<br>
Second Year Student at International Institute Of Information Technology, Pune in Computer Engineering Branch.
</p>
<br>
</main>
</body>
</html>