-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
38 lines (31 loc) · 1.14 KB
/
about.html
File metadata and controls
38 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="about-page">
<div class="about-container">
<h1>About Us</h1>
<div class="team-member">
<h3>Dhatri Garg</h3>
<p><strong>About:</strong> B.Tech 1st year (VLSI)</p>
<p><strong>Role:</strong> Core Development & Feature Integration</p>
<p><strong>Contact:</strong>
<a href="mailto:dhatrigarg67@gmail.com?subject=Smart Task Planner Project">
dhatrigarg67@gmail.com </a></p>
</div>
<div class="team-member">
<h3>Aakriti Gupta</h3>
<p><strong>About:</strong> B.Tech 1st year (ECE)</p>
<p><strong>Role:</strong> Project Concept & Feature Development</p>
<p><strong>Contact:</strong><a href="mailto:guptaaakriti1206@gmail.com?subject=Smart Task Planner Project">
guptaaakriti1206@gmail.com</a></p>
</div>
<a href="index.html" class="back-link">← Back to Home</a>
</div>
<script src="js/app.js"></script>
</body>
</html>