-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
67 lines (63 loc) · 2.8 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
<!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>Spotify - Your favourite music is here!!</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<nav>
<ul>
<li class="brand"><img src="logo.png" alt="Spotify"> Spotify</li>
<li><button class="nav-button" onclick="window.location.href='index.html'">Home</button></li>
<li><button class="nav-button" onclick="window.location.href='about.html'">About</button></li>
</ul>
</nav>
<div class="about-section">
<h1>Welcome to Spotify</h1>
<p>This is the harmonious realm of the digital age!</p>
<p>Resize the browser window to see that this page is responsive.</p>
</div>
<h2 style="text-align:center">Our Team</h2>
<div class="row">
<div class="column">
<div class="card">
<img src="/MembersImage/debasmita.png" alt="mee" style="width:100%">
<div class="container">
<h2>Debasmita Raha</h2>
<p class="title">CEO & Founder</p>
<p>I am the founder of this application.I envision creating a vibrant world where music is at the heart of everything.</p><br>
<p><strong>[email protected]</strong></p><br>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="/MembersImage/Swati.png" alt="swati" style="width:100%">
<div class="container">
<h2>Swati Maji</h2>
<p class="title">Co.Founder</p>
<p>I am the cofounder of this application.I'm passionate about music and driven by a love for bringing it to life.</p><br>
<p><strong>[email protected]</strong></p><br>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="/MembersImage/Amlan.png" alt="amlan" style="width:100%">
<div class="container">
<h2>Amlan Dey</h2>
<p class="title">CMO</p>
<p>As the CMO, I am committed to providing the best music experience and keeping our audience engaged with the latest in the music world.</p><br>
<p><strong>[email protected]</strong></p><br>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</div>
</body>
</html>