-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
94 lines (70 loc) · 3.7 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="">
<!-- Reset CSS default styles -->
<link rel="stylesheet" href="css/reset-style.css">
<!-- CSS Main File -->
<link rel="stylesheet" href="css/index.css">
<title>Room homepage</title>
</head>
<body>
<section class="top-container">
<header class="header container">
<nav class="navbar">
<a class="hamburger">
<img id="imgId" src="assets/images/icon-hamburger.svg" alt="hamburger">
</a>
<a class="logo">
<img src="assets/images/logo.svg" alt="logo">
</a>
<div class="nav-menu">
<ul class="nav-list">
<li class="nav-item"><a class="nav-link" href="#">home</a></li>
<li class="nav-item"><a class="nav-link" href="#">shop</a></li>
<li class="nav-item"><a class="nav-link" href="#">about</a></li>
<li class="nav-item"><a class="nav-link" href="#">contact</a></li>
</ul>
</div>
</nav>
</header>
<article class="title container">
<h1 class="title-heading">Discover innovative ways to decorate</h1>
<p class="description">
We provide unmatched quality, comfort, and style for property owners across the country. Our experts combine form and function in bringing your vision to life. Create a room in your own style with our collection and make your property a reflection of
you and what you love.
</p>
<a class="shop-link" href="#">
shop now <img class="arrow-icon" src="assets/images/icon-arrow.svg" alt="arrow">
</a>
</article>
</section>
<main>
<section class="about">
<div class="dark-img">
<img src="assets/images/image-about-dark.jpg" alt="about image dark">
</div>
<div class="about-furniture container">
<h2>about our furniture</h2>
<p>
Our multifunctional collection blends design and function to suit your individual taste. Make each room unique, or pick a cohesive theme that best express your interests and what inspires you. Find the furniture pieces you need, from traditional to contemporary
styles or anything in between. Product specialists are available to help you create your dream space.
</p>
</div>
<div class="light-img">
<img src="assets/images/image-about-light.jpg" alt="about image dark">
</div>
</section>
</main>
<!--
We are available all across the globe With stores all over the world, it's easy for you to find furniture for your home or place of business. Locally, we’re
in most major cities throughout the country. Find the branch nearest you using our store locator. Any questions? Don't hesitate to contact us today. Shop now Manufactured with the best materials Our modern furniture store provide a high level of quality.
Our company has invested in advanced technology to ensure that every product is made as perfect and as consistent as possible. With three decades of experience in this industry, we understand what customers want for their home and office. Shop now
About our furniture
-->
<script src="js/script.js" type="text/javascript"></script>
</body>
</html>