-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
64 lines (62 loc) · 2.59 KB
/
about.html
File metadata and controls
64 lines (62 loc) · 2.59 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
<!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="styles.css">
<style>
body {
background-image: url('interior-design3.jpg');
background-size: cover;
background-attachment: fixed;
}
.about-frame {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.about-frame h2 {
font-size: 24px;
margin-bottom: 10px;
}
.about-frame p {
font-size: 16px;
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Interior Design Blog</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#" id="profile-link">Profile</a></li>
<li><a href="#" id="explore-link">Explore</a></li>
</ul>
</nav>
</div>
</header>
<section class="about-frame">
<div class="container">
<h2>About Us</h2>
<p>Welcome to the Interior Design Blog, a vibrant community where designers, enthusiasts, and professionals come together to share their creativity and expertise. Our platform is dedicated to showcasing the most innovative and inspiring interior design projects, offering a space for designers to gain the recognition they deserve.</p>
<p>At Interior Design Blog, we believe in the power of creativity and the impact of great design. Whether you're an established designer or just starting out, our blog provides a platform to share your work, connect with like-minded individuals, and find inspiration for your next project.</p>
<p>Join our community today and be a part of a growing network of interior design enthusiasts who are passionate about transforming spaces and creating beautiful, functional environments.</p>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Interior Design Blog. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>