generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
90 lines (90 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Interior Design, Athlone, Ireland">
<meta name="keywords" content="interior design, interior, design, athlone, ireland">
<title>Interior Design</title>
<link rel="apple-touch-icon" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Hind+Guntur:wght@300&family=Montserrat+Alternates:wght@300;400&display=swap" rel="stylesheet">
<link rel="preload" as="image" href="assets/images/about_us1.webp">
</head>
<body>
<header>
<h1>Interior Design</h1>
<label for="nav-toggle" class="nav-toggle-label" aria-label="Menu">
<i class="fa-solid fa-bars"></i>
</label>
<input type="checkbox" id="nav-toggle">
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about-us">
<div id="hero-text">
<h2>Interior design is the ability to transform an ordinary space into a beutiful, well-designed and functional enviroment.</h2>
</div>
</section>
<section>
<div class="about">
<img src="./assets/images/about_us1.webp" alt="Three positive designers">
<div class="about-us-text">
<h3>ABOUT US</h3>
<p><strong>Interior Design</strong> is a well-established home decorating company specializing in the transformation of kitchens,
living rooms, bedrooms, and bathrooms. Founded in 2017 and located in the heart of Ireland - Athlone,
we take pride in reshaping and revitalizing homes.</p><br>
<p> Our dedicated team of designers is committed to changing the way your house looks,
ensuring it becomes a true reflection of your unique personality. At Interior Design,
we understand the importance of creating spaces that resonate with you.</p><br>
<p>Our experienced team will work closely with you to understand your vision, preferences,
and lifestyle. From conceptualization to execution,
we strive to elevate your living spaces to new heights of elegance and functionality.</p><br>
<p>Transforming houses into homes is not just our job; it's our passion.
With a keen eye for detail and a commitment to excellence,
we take on each project as an opportunity to craft interiors that inspire and delight.</p><br>
<p><strong>Your dream home awaits transformation, and we're here to make it a reality.</strong></p>
</div>
</div>
</section>
</main>
<footer>
<ul id="social-networks">
<li class="instagram">
<a href="https://www.instagram.com/" target="_blank" rel="noopener"
aria-label="Visit our Instagram page (opens in new tab)">
<i class="fa-brands fa-instagram"></i></a>
</li>
<li class="facebook">
<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-label="Visit our Facebook page (opens in new tab)">
<i class="fa-brands fa-square-facebook"></i></a>
</li>
<li class="houzz">
<a href="https://www.houzz.com/" target="_blank" rel="noopener"
aria-label="Visit our Houzz page (opens in new tab)">
<i class="fa-brands fa-houzz"></i></a>
</li>
<li class="pinterest">
<a href="https://www.pinterest.com/" target="_blank" rel="noopener"
aria-label="Visit our Pinterest page (opens in new tab)">
<i class="fa-brands fa-pinterest-p"></i></a>
</li>
</ul>
<p>©2023 Interior Design "All Rights Reserved"</p>
</footer>
<script src="https://kit.fontawesome.com/3b20d96fa9.js" crossorigin="anonymous"></script>
</body>
</html>