-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
112 lines (107 loc) · 3.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - VideoHaven Viewer</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #181818;
color: #e0e0e0;
line-height: 1.6;
}
.header {
background-color: #212121;
padding: 15px;
text-align: center;
}
.header h1 {
margin: 0;
color: white;
}
.content {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #282828;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.content h2 {
color: #e0e0e0;
}
.content p {
color: #b0b0b0;
}
.contact-info {
margin-top: 20px;
color: #b0b0b0;
}
.contact-info h3 {
margin-top: 0;
color: #e0e0e0;
}
.contact-info p {
margin: 10px 0;
}
.contact-info a {
color: #1e90ff;
text-decoration: none;
}
.contact-info a:hover {
text-decoration: underline;
}
.social-icons {
margin-top: 10px;
}
.social-icons a {
display: inline-block;
margin-right: 10px;
}
.back-button {
display: inline-block;
padding: 10px 15px;
margin-top: 20px;
background-color: #212121;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.back-button:hover {
background-color: #333333;
}
@media (max-width: 600px) {
.content {
padding: 10px;
}
}
</style>
</head>
<body>
<div class="header">
<h1>About VideoHaven Viewer</h1>
</div>
<div class="content">
<h2>Welcome to VideoHaven Viewer!</h2>
<p>VideoHaven Viewer is an website designed to enhance your video watching experience by providing personalized video suggestions based on your interests.</p>
<p>With an easy-to-use interface and seamless navigation, you can explore a wide range of videos from various categories. Whether you're into entertainment, education, or anything in between, VideoHaven Viewer has something for you!</p>
<p>Our mission is to connect users with engaging content that matches their preferences, making video discovery enjoyable and straightforward.</p>
<div class="contact-info">
<h3>Contact Information:</h3>
<p>Name: Sahil Parmar</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
<p>Website: <a href="https://sahilparmar.my.canva.site/" target="_blank">sahilparmar.my.canva.site</a></p>
<div class="social-icons">
<a href="https://www.instagram.com/this_is_sahilparmar?igsh=MXI3NjFwam8xcGxpcQ==" target="_blank"><img src="instagram.png" alt="Instagram" height="50"></a>
<a href="https://www.linkedin.com/in/sahil-parmar-6b2656306?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BzaILNlurSoGSbLrwv4KKkw%3D%3D" target="_blank"><img src="linkedin.png" alt="LinkedIn" height="50"></a>
<a href="mailto:[email protected]"><img src="email.png" alt="Email" height="50"></a>
</div>
</div>
<a href="javascript:void(0);" class="back-button" onclick="window.history.back();">Back</a>
</div>
</body>
</html>