-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (86 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link
href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@200&family=Lora:wght@400;700&family=Montserrat:wght@300;500;600;700&display=swap"
rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://kit.fontawesome.com/07c13fcbdb.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="assets/favicon/devchallenges.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>Interior Consultant</title>
</head>
<body>
<!-- Container -->
<div class="container">
<!-- Header -->
<header>
<nav>
<div class="logo">
<div class="box-logo">
<a href="index.html">This Interior</a>
</div>
</div>
<i class="material-icons me-48 icon-menu" id="menu-open">menu</i>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Collection</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<nav class="nav-mobile" id="nav-mobile">
<i class="material-icons me-48 icon-close" id="menu-close">close</i>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Collection</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<!-- EndHeader -->
<!-- Section -->
<section id="section">
<div class="box-left">
<h1>Modern interior</h1>
<p>A full-Service residential & <br />commercial interior desing and <br />staging company offering
<br />professional
organizing & <br />eco-services.</p>
<div class="box-read-more">
<a href="#">Read more</a><i class="material-icons md-48 arrow-right">arrow_right_alt</i>
</div>
</div>
<div class="box-right">
<div class="image">
<img src="assets/photos/photo1.png" alt="Image">
</div>
<div class="info">
<div class="person">
<div class="image">
<img src="assets/photos/photo2.png" alt="Aliza Webber">
</div>
<div class="person-info">
<p class="name">Aliza Webber</p>
<p class="pro">Interior designer</p>
</div>
</div>
<div class="title">
<a href="#">Designed in 2020 by <br />Aliza Webber</a>
</div>
</div>
</div>
</section>
<!-- EndSection -->
<footer id="footer">
<hr class="border">
<p>Keiler Guardo<a href="https://devchallenges.io/challenges" target="_blank">@DevChallenges</a></p>
</footer>
</div>
<!-- EndContainer -->
<!-- Script -->
<script src="js/app.js"></script>
</body>
</html>