-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPage2.html
More file actions
182 lines (157 loc) · 5.45 KB
/
Page2.html
File metadata and controls
182 lines (157 loc) · 5.45 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
box-sizing: border-box;
}
body {
background: linear-gradient(-45deg, #ff6f61, #f06292, #ffd54f, #4db6ac, #9575cd, #ff8a65, #ffcc80, #dce775, #a5d6a7, #f8bbd0);
background-size: 400% 400%;
animation: gradientBG 20s ease infinite;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
text-align: center;
}
@keyframes gradientBG {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
max-width: 1000px;
margin: 20px auto;
background: rgba(255, 255, 255, 0.9);
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
overflow: hidden;
padding: 20px;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.container:hover {
transform: scale(1.02);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.header {
background-color: #ff0000;
color: white;
padding: 15px;
text-align: center;
font-size: 2.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
border-radius: 10px 10px 0 0;
}
.navbar a:hover {
background-color: #ff6f00;
color: #fff;
transition: background-color 0.3s ease;
}
.main {
display: flex;
flex-direction: column;
padding: 20px;
}
.profile {
width: 100%;
margin-bottom: 20px;
}
.profile img {
width: 100%;
border-radius: 15px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
transition: transform 0.3s ease;
}
.profile img:hover {
transform: scale(1.05);
}
.content {
padding: 10px;
color: #333;
}
.content h2 {
color: #d32f2f;
font-size: 2rem;
text-transform: uppercase;
text-decoration: underline;
margin-bottom: 15px;
}
.content p {
color: #1976d2;
font-size: 1.2rem;
line-height: 1.6;
}
/* Footer Styling */
.footer {
background: transparent;
color: #000;
/* Changed text color to black */
padding: 10px;
text-align: center;
font-size: 1rem;
border-radius: 0 0 10px 10px;
backdrop-filter: blur(5px);
/* Optional: adds a slight blur to enhance text visibility */
}
@media (min-width: 768px) {
.main {
flex-direction: row;
}
.profile {
width: 40%;
margin-bottom: 0;
}
.content {
width: 60%;
}
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1><b>TechVision Studio</b></h1>
</div>
<div class="main">
<div class="profile">
<img src="p2p.jpg" alt="Profile Image">
</div>
<div class="content">
<h2><b><u>About Us</u></b></h2>
<p><b>TechVision Studio is a game development studio dedicated to creating innovative and entertaining
experiences for players around the world. Our team is composed of creative and passionate
professionals who
have the skill and experience necessary to deliver top-notch gaming experiences. We design and
develop games
for mobile, PC, and console platforms, and strive to create unique and engaging experiences that
appeal to
the widest possible audience. We are always looking for new ideas and approaches to game
development, and
are committed to creating games that push the boundaries of innovation and creativity. We are
passionate
about delivering high-quality experiences that players will love and enjoy. Our goal is to make
sure that
our players remain entertained and challenged while playing our games. We strive to provide a
unique gaming
experience with every new release, and always strive to exceed customer expectations.</b></p>
</div>
</div>
<div class="footer">
<p>©2023 TechVision. All rights reserved.</p>
</div>
</div>
</body>
</html>