-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadele.html
More file actions
98 lines (90 loc) · 2.3 KB
/
adele.html
File metadata and controls
98 lines (90 loc) · 2.3 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
<!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>About - BeatBot</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap">
<style>
*{
margin:0;
padding:0;
box-sizing: border-box ;
}
body{
background-color: black;
}
.img{
background-image: url("/home/rahul/Desktop/BeatBot/images team/Untitled.jpeg");
height:180px;
width:180px;
border-radius: 100%;
background-position: center;
background-size: cover;
margin-left:82px;
}
.h{
margin-top:55px;
font-size: 40px;
}
.main{
height:100vh;
}
.m{
display: flex;
justify-content: center;
align-items: center;
}
.c1{
height:400px;
width:380px;
}
.c2{
margin-left:50px;
height:400px;
width:700px;
}
.card{
background-color: #111111;
border-radius: 20px;
padding:10px;
}
h1{
margin-top:30px;
font-size: 40px;
}
.hh{
margin-top:50px;
font-size: 3rem;
text-align: center;
}
</style>
</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>
<div class="main">
<h1 class="hh">About the auther</h1>
<div class="m">
<div class="c1 card">
<div class="img"></div>
<h1 class="h">Adele Laurie</h1>
</div>
<div class="c2 card">
<h1>About</h1>
<p>Adele Laurie Blue Adkins MBE, known mononymously as Adele, is an English singer-songwriter. She is known for her mezzo-soprano vocals and sentimental songwriting. Adele has received numerous accolades including 16 Grammy Awards, 12 Brit Awards, an Academy Award, a Primetime Emmy Award, and a Golden Globe Award. </p>
</div>
</div>
</div>
</body>
</html>