-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.html
More file actions
89 lines (81 loc) · 3.56 KB
/
Copy pathabout-us.html
File metadata and controls
89 lines (81 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Share - About Us</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header></header>
<div class="about-hero">
<div class="container">
<h1>About DishDelight</h1>
<p>Bringing culinary inspiration to kitchens around the world.</p>
</div>
</div>
<div class="about-section">
<div class="about-content">
<h2>Our Story</h2>
<p>Welcome to DishDelight, your number one source for all things recipes. We're dedicated to providing you
the
very best of culinary inspiration, with an emphasis on community, quality, and ease of use.</p>
<p>Founded in 2025, DishDelight has come a long way from its beginnings. When we first started out, our
passion for "sharing the joy of cooking" drove us to start our own business.</p>
<p>We hope you enjoy our platform as much as we enjoy offering it to you. If you have any questions or
comments, please don't hesitate to contact us.</p>
</div>
</div>
<div class="about-section">
<h2 class="section-title">Meet Our Developers</h2>
<div class="team-grid">
<!-- Developer 1 -->
<div class="dev-card">
<img src="https://i.pinimg.com/736x/6f/f9/60/6ff960d72dc1a965f5525988cc6b0cee.jpg" alt="Developer 1"
class="dev-img">
<div class="dev-info">
<h3>Devarshi Nayee</h3>
<span class="role">Lead Full Stack Developer</span>
<p>Passionate about building scalable web applications and creating seamless user experiences.</p>
</div>
</div>
<!-- Developer 2 -->
<div class="dev-card">
<img src="https://i.pinimg.com/1200x/4e/18/ce/4e18ce921cd309b7e750af87179addac.jpg" alt="Developer 2"
class="dev-img">
<div class="dev-info">
<h3>Vaidehi Lukhi</h3>
<span class="role">UI/UX Designer & Frontend Dev</span>
<p>Dedicated to crafting beautiful interfaces and ensuring accessible design for all users.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="company-details">
<h2>Challenge Rate Inc.</h2>
<div class="contact-grid">
<div class="contact-item">
<i class="fas fa-map-marker-alt"></i>
<p>G-30, MBC - Meridian Business Center, Lajamni Chowk, Shanti Niketan Society, MotaVarachha, Surat,
Gujarat 394105</p>
</div>
<div class="contact-item">
<i class="fas fa-envelope"></i>
<p>srjay@challengerate.com</p>
</div>
<div class="contact-item">
<i class="fas fa-phone"></i>
<p>+91 8140059722</p>
</div>
</div>
</div>
</div>
<footer>
<p>© 2025 DishDelight. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>