-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 2.1 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 2.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interior Consultant</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Pro&family=Lora&family=Montserrat&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<button id="header-btn">This Interior</button>
<nav>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#">Collection</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<a href="javascript:void(0);" id="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</nav>
</header>
<main>
<div id="content">
<div id="contentWriteUp">
<h2>Modern Interior</h2>
<p id="p1">A full-Service residential & commercial interior design and staging company offering professional organizing & eco-services.</p>
<p>Read More ⟶</p>
</div>
<div>
<img class="img-responsive" id="contentBigImg" src="images/photo1.png" alt="image">
<div id="designCreditDiv">
<div id="designCreditDivInner">
<img class="img-responsive" src="images/photo2.png" alt="image">
<div>
<p id="name">Aliza Webber</p>
<p id="role">Interior designer</p>
</div>
</div>
<p id="creditFootNote">Designed in 2020 by Aliza Webber</p>
</div>
</div>
</div>
</main>
<hr>
<footer>GoodieC @ DevChallenges.io</footer>
<script src="./script.js"></script>
</body>
</html>