-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
213 lines (209 loc) · 10.1 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<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 me</title>
<link rel="icon" type="image/png"
href="https://res2.weblium.site/res/5cb9c36ac3fd82002369e514/5d91f0346ad93d0026df1bdc_optimized">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link rel="stylesheet" href="css/about.css" />
</head>
<body>
<header class="header">
<nav class="navigation">
<div class="container">
<div class="navigation-logo"><a href="index.html">John's designs</a>
<div class="navigation-burger"><span></span></div>
</div>
<div class="navigation-wrapper">
<div class="navigation-menu">
<a class="navigation-menu-item" href="#">About us</a>
<a class="navigation-menu-item" href="services.html">Services</a>
<a class="navigation-menu-item" href="projects.html">Projects</a>
<a class="navigation-menu-item" href="reviews.html">Reviews</a>
<a class="navigation-menu-item" href="contacts.html">Contacts</a>
</div>
<div class="navigation-social">
<a href="https://www.facebook.com" target="_blank">
<div class="navigation-icon"><i class="fa-brands fa-facebook-f"></i></div>
</a>
<a href="https://www.instagram.com" target="_blank">
<div class="navigation-icon"><i class="fa-brands fa-instagram"></i></div>
</a>
<a href="https://www.youtube.com" target="_blank">
<div class="navigation-icon"><i class="fa-brands fa-youtube"></i></div>
</a>
</div>
</div>
</div>
</nav>
<div class="banner">
<h1 class="banner-title container">
About us
</h1>
</div>
<div class="banner-bottom container">
<p class="banner-text">
John's designs is a professional interior design studio providing eye-catchy solutions and the highest
quality design services to the residential and commercial customers.
</p>
<p class="banner-text">
Our dedicated team has years of experience in space planning, floor planning, interior design, lighting
design,
furnishing, decorations, and so on. We strive to turn any clients' ideas into reality and make their
interiors more
functional, comfortable, and efficient.
</p>
</div>
</header>
<main>
<section class="studio">
<div class="title-decor">
<div class="decor-line"></div>
<div class="decor-line"></div>
</div>
<h2 class="studio-title">Our studio</h2>
<div class="studio-inner">
<div class="studio-photo">
<img src="img/about/studio1.jfif" alt="studio photo">
</div>
<div class="studio-photo">
<img src="img/about/studio2.jfif" alt="studio photo">
</div>
<div class="studio-photo">
<img src="img/about/studio3.jfif" alt="studio photo">
</div>
<div class="studio-photo">
<img src="img/about/about-banner.jfif" alt="studio photo">
</div>
</div>
</section>
<section class="values container" id="values">
<div class="values-wrapper-title">
<div class="title-decor">
<div class="decor-line"></div>
<div class="decor-line"></div>
</div>
<h2 class="values-title">Our values</h2>
</div>
<div class="values-inner">
<div class="value-item accordion">
<button class="accordion-btn" aria-expanded="false">
<h3 class="accordion-title">Personal approach</h3>
<span class="accordion-icon"></span>
</button>
<p class="accordion-content" aria-hidden="true">We apply a personal approach to each
project, carefully listen to all the
clients'
needs, and strive to meet their
expectations.</p>
</div>
<div class="value-item accordion">
<button class="accordion-btn" aria-expanded="false">
<h3 class="accordion-title">Diversity</h3>
<span class="accordion-icon"></span>
</button>
<p class="accordion-content" aria-hidden="true">We work with customers on both small and
large-scale projects and
reconstructions
including structural changes and
extensions.</p>
</div>
<div class="value-item accordion">
<button class="accordion-btn" aria-expanded="false">
<h3 class="accordion-title">Creativity</h3>
<span class="accordion-icon"></span>
</button>
<p class="accordion-content" aria-hidden="true">Our creative thinking and stunning
visual ideas help us deliver our clients
unique
and modern interior design solutions.</p>
</div>
<div class="value-item accordion">
<button class="accordion-btn" aria-expanded="false">
<h3 class="accordion-title">Professionalism</h3>
<span class="accordion-icon"></span>
</button>
<p class="accordion-content" aria-hidden="true">Our professional team has years of
experience in delivering projects per your
requirements, on time and on budget.</p>
</div>
<div class="value-item accordion">
<button class="accordion-btn" aria-expanded="false">
<h3 class="accordion-title">Quality</h3>
<span class="accordion-icon"></span>
</button>
<p class="value-text accordion-content" aria-hidden="true">The highest quality is our pride and it
is above all. We pay much attention to
every detail to exceed clients'
expectations.</p>
</div>
</div>
</section>
<section class="quote">
<div class="quote-wrapper container">
<div class="quote-card">
<p class="quote-text">"I can say without a doubt that the team at John's designs is highly
professional
in any design-related service!"</p>
<h4 class="quote-signature">Anna Smith</h4>
</div>
</div>
</section>
<section class="discuss">
<div class="discuss-wrapper container">
<h2 class="discuss-title">
Invite our interior design specialist to your house
</h2>
<h4 class="discuss-subtitle">
... and let your home become a reflection of your better self!
</h4>
<div class="discuss-btn button"><a href="index.html#discuss">Discuss project</a></div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer-top container">
<div class="footer-inner">
<a class="footer-logo" href="index.html">John's designs</a>
<span class="footer-text">Interior design studio.</span>
</div>
<div class="footer-inner">
<a class="footer-menu-item" href="#">About</a>
<a class="footer-menu-item" href="services.html">Services</a>
<a class="footer-menu-item" href="contacts.html">Contacts</a>
</div>
<div class="footer-inner">
<a class="footer-menu-item" href="reviews.html">Reviews</a>
<a class="footer-menu-item" href="projects.html">Projects</a>
</div>
<div class="footer-inner">
<a class="footer-menu-item" href="index.html#team">Our team</a>
<a class="footer-menu-item" href="about.html#values">Our values</a>
</div>
<div class="footer-inner">
<h3 class="footer-title">Follow Us</h3>
<div class="footer-socials">
<a href="https://www.facebook.com" target="_blank">
<div class="footer-icon"><i class="fa-brands fa-facebook-f"></i></div>
</a>
<a href="https://www.instagram.com" target="_blank">
<div class="footer-icon"><i class="fa-brands fa-instagram"></i></div>
</a>
<a href="https://www.youtube.com" target="_blank">
<div class="footer-icon"><i class="fa-brands fa-youtube"></i></div>
</a>
</div>
</div>
</div>
<div class="footer-bottom container">
<span class="footer-copy">© Created by</span>
<span class="footer-copy">All rights Reserved</span>
</div>
</footer>
<script src="js/burger-menu.js"></script>
<script src="js/accordion-values.js"></script>
</body>
</html>