-
Notifications
You must be signed in to change notification settings - Fork 1
/
prayag.html
85 lines (85 loc) · 2.69 KB
/
prayag.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About the Developer</title>
<style>
*{
}
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #333;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: #c5c0c0;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1, h2 {
text-align: center;
color: #333;
}
p {
font-size: 16px;
color: #555;
line-height: 1.6;
}
.info-section {
margin-bottom: 20px;
}
.contact {
background-color: #a3a3a3;
padding: 15px;
border-left: 4px solid #4CAF50;
margin: 20px 0;
}
.contact a {
color: #007BFF;
text-decoration: none;
}
.contact a:hover {
text-decoration: underline;
}
.thanks {
text-align: center;
font-size: 18px;
color: #4CAF50;
margin-top: 30px;
font-weight: bold;
}
footer {
text-align: center;
padding: 20px;
font-size: 14px;
color: #999;
}
</style>
</head>
<body>
<div class="container">
<h1>About the Developer - Prayag </h1>
<div class="info-section">
<h2>Project Information</h2>
<p>This website was originally designed to provide a seamless user experience with full backend support. However, due to technical issues related to GitHub hosting, the backend has been removed and the project has been adapted to work as a front-end only site.</p>
<p>We apologize for any inconvenience this may cause and are constantly working to enhance the user experience.</p>
</div>
<div class="contact">
<h2>Contact for Collaboration</h2>
<p>If you are interested in collaborating on this project or have any inquiries, feel free to contact me at:</p>
<p><strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="thanks">
<p>Thank you for visiting the website!</p>
</div>
</div>
<footer>
<p>© 2024 Prayag Anil Thakur. All rights reserved.</p>
</footer>
</body>
</html>