-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.html
71 lines (67 loc) · 2.18 KB
/
help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help - BeatBot</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap">
</head>
<body>
<header>
<nav>
<a href="home.html" class="logo">BeatBot</a>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="help.html">Help</a></li>
<li><a href="login.html">SignOut</a></li>
</ul>
</nav>
</header>
<style>
body {
font-family: 'Inter', sans-serif;
margin: 0;
padding: 0;
}
main {
text-align: center;
padding: 20px;
}
.container {
display: flex;
justify-content: center; /* Center aligning the container */
gap: 20px; /* Adjust this value to set the gap */
margin-top: 15px;
}
.image-container {
flex: 1; /* Equal distribution of space for each image */
}
img {
max-width: 100%; /* Ensure images don't exceed container width */
height: 400px; /* Set image height */
max-height: 100%; /* Maintain aspect ratio */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add drop shadow */
border-radius: 8px; /* Optional: Add border radius for rounded corners */
}
</style>
<main>
<h1>Help</h1>
<p>How can we assist you? Check out our FAQs, support options, and resources for using BeatBot. Feel free to reach out</p>
<h2>Introducing Our Team.</h2>
<div class="container">
<div class="image-container">
<img src="/home/rahul/Desktop/BeatBot/images team/mayakhateam.png" alt="Image 1">
</div>
<div class="image-container">
<img src="/home/rahul/Desktop/BeatBot/images team/rahulteam.png" alt="Image 2">
</div>
<div class="image-container">
<img src="/home/rahul/Desktop/BeatBot/images team/naveenteam.png" alt="Image 3">
</div>
</div>
</main>
</body>
</html>