-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
94 lines (84 loc) · 2.97 KB
/
about.html
File metadata and controls
94 lines (84 loc) · 2.97 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.company-info {
text-align: center;
background-color: #34db98;
color: #fff;
padding: 20px;
}
.company-logo {
display: block;
margin: 0 auto;
max-width: 150px;
}
.company-name {
font-size: 24px;
margin: 10px 0;
}
.employee-list {
margin-top: 20px;
display: flex;
justify-content: center;
}
.employee {
background-color: #fff;
padding: 10px;
margin: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
text-align: center;
}
.story {
text-align: center;
margin: 20px;
}
</style>
</head>
<body>
<div class="nav">
<ul class="left" type="none">
<img class="home" src="https://imgs.search.brave.com/NyHePm1_NaEXi1xJ12mJzYt-wSS8XjuS7uPa8bFp0PY/rs:fit:860:0:0/g:ce/aHR0cHM6Ly90NC5m/dGNkbi5uZXQvanBn/LzAxLzkyLzgwLzI3/LzM2MF9GXzE5Mjgw/Mjc1OF9haUp0VUhm/eDQzUG8wdmg4MnFu/SExCOVJJTzZoOTMx/YS5qcGc"; style=" width:50px; height:50px ;">
<li><a href="project1.html">Go Back to Home</a></li>
</ul><br>
</div>
<div class="company-info">
<img class="company-logo" src="E.Event.jpg" alt="E Event Logo">
<h1 class="company-name">E Event</h1>
<p>Founded in 2020</p>
</div>
<div class="employee-list">
<div class="employee">
<h2>Head of the Company</h2>
<p>Name: Janvee</p>
</div>
<div class="employee">
<h2>Employee 2</h2>
<p>Name: Kiran Bedi </p>
<p></p>
</div>
<div class="employee">
<h2>Employee 3</h2>
<p>Name: Akhil</p>
</div>
<div class="employee">
<h2>Employee 4</h2>
<p>Name: Pranay</p>
</div>
</div>
<div class="story">
<h2>Our Story</h2>
<p>E Event is a company founded in 2020 that specializes in event planning and management. Our dedicated team, led by Janvee, is committed to creating unforgettable experiences for our clients.</p>
<p>We believe in the power of creativity and innovation, which is why we approach each event with a fresh perspective, tailoring our services to meet the unique needs and visions of our clients. Our goal is to turn dreams into reality.</p>
<p>Over the years, we have successfully organized a wide range of events, from weddings and corporate gatherings to community festivals and fundraisers. Our attention to detail, commitment to quality, and passion for what we do have earned us a reputation as a trusted event planning partner.</p>
<p>At E Event, we are not just event planners; we are memory makers. We take pride in the smiles and positive feedback we receive from our clients and their guests, knowing that we've created moments that will be cherished for a lifetime.</p>
</div>
</div>
</body>
</html>