-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5" />
<link rel="icon" href="assets/devchallenges.png" />
<link rel="shortcut icon" type="image/x-icon" href="https://devchallenges.io/" />
<link rel="stylesheet" href="css/styles.css">
<title>Devchallenges</title>
</head>
<body>
<header class="Header">
<div class="HeaderButton">This Interior</div>
<div class="MenuResponsive">
<input type="checkbox" id="CheckMenu" name="CheckMenu" class="CheckMenu">
<label for="CheckMenu" class="LabelMenu"></label>
<nav class="MenuContainer">
<ul class="Menu">
<li class="MenuElem--isActive">Home</li>
<li class="MenuElem">Collection</li>
<li class="MenuElem">About</li>
<li class="MenuElem">Contact</li>
</ul>
</nav>
</div>
<div class="MenuDesktop">
<li class="MenuElem--isActive">Home</li>
<li class="MenuElem">Collection</li>
<li class="MenuElem">About</li>
<li class="MenuElem">Contact</li>
</div>
</header>
<main class="Main">
<section class="TextSection">
<h1 class="H1">Modern interior</h1>
<p class="TextBlock">A full-Service residential & commercial interior design and staging company offering professional organizing & eco-services.</p>
<a href="" class="MoreLink">Read more ⟶</a>
</section>
<section class="PortfolioSection">
<img src="assets/photo1.png" alt="My portfolio" class="PortfolioImg">
<div class="PortfolioCard">
<div class="PortraitTitle">
<img src="assets/photo2.png" alt="Aliza Webber" class="Portrait">
<div class="PortraitID">
<p class="Name">Aliza Webber</p>
<p class="Position">Interior designer</p>
</div>
</div>
<header class="PortraitHeader">
<h2 class="H2">Designed in 2020 by Aliza Webber</h2>
</header>
</div>
</section>
</main>
<footer class="Footer">
<p class="Footer-p">created by <a href="https://github.com/sergio-atreides" class="Footer-a" target="_blank">Sergio Atreides</a> - devChallenges.io</p>
</footer>
</body>
</html>