-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaboutus.html
56 lines (51 loc) · 1.79 KB
/
aboutus.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
<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</title>
<link rel="stylesheet" href="aboutus.css">
</head>
<body>
<div class="about-section">
<h1>About Us</h1>
<p>We are team of enthusiastic people trying to build a platform that will working on waste collection , handle and recycle....</p>
</div>
<h2 style="text-align:center">Our Team</h2>
<div class="row">
<div class="column">
<div class="card">
<img src="./images/sin.jpeg" alt="Jane" style="width:100%">
<div class="container">
<h2>Abhishek</h2>
<p class="title">Web Developer</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="./images/kumar.jpeg" alt="Mike" style="width:100%">
<div class="container">
<h2>Kumar Ayush</h2>
<p class="title">Designer</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="/images/raj.jpeg" alt="John" style="width:100%">
<div class="container">
<h2>Abhinav Raj</h2>
<p class="title">Android Developer</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</div>
</body>
</html>