-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
47 lines (41 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>about</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<div class="about-section">
<h1>About Us Page</h1>
<p>Some text about who we are and what we do.</p>
<p>Resize the browser window to see that this page is responsive by the way.</p>
</div>
<h2 style="text-align:center">Our Team</h2>
<div class="column">
<div class="card">
<img src="pngtree-chibi-boy-with-glasses-png-image_318105.jpg" alt="Vivek" style="width:100%">
<div class="container">
<h2>Vivek Shivhare</h2>
<p class="title">Developer of C&P</p>
<p>A learning Web Developer</p>
<p>[email protected]</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="" alt="vikhal" style="width:100%">
<div class="container">
<h2>Vishal chaurasiya</h2>
<p class="title">Developer of C&P</p>
<p>....</p>
<p>.....</p>
<p><button class="button">Contact</button></p>
</div>
</div>
</div>
</body>
</html>