forked from fdnd-task/the-client-website
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·104 lines (91 loc) · 3.34 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
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Funda Bewaarde Huizen</title>
<link rel="stylesheet" href= "styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200">
</head>
<body id="basic-layout-1">
<header>
<img src="assets/Logo's/02-funda-Blue.svg" alt="logo funda" class="funda-logo">
<nav>
<ul class="navlist-left">
<li class="navlist-left-menu"><a href="#">Menu</a></li>
<li class="sidebarmenu"><a href="#"><svg xmlns="http://www.w3.org/2000/svg" height="30" viewBox="0 -960 960 960" width="27"><path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/></svg></a></li>
</ul>
<ul class="navlist-right">
<li><a href="#">Mijn huis</a></li>
<li><a href="#">Profiel</a></li>
</ul>
</nav>
</header>
<ul class="sidebar">
<li class="sidebarexit"><a href="#"><svg xmlns="http://www.w3.org/2000/svg" height="30" viewBox="0 -960 960 960" width="30"><path d="M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z"/></svg></a></li>
<li><a href="#"><b>Kopen</b></a></li>
<li><a href="#"><b>Huren</b></a></li>
<li><a href="#"><b>Verkopen</b></a></li>
</ul>
<h1>Mijn Lijsten</h1>
<section class="sec1"><p>Koen's Kinderkelder</p></section>
<section class="sec2"><p>Oma's Osso</p></section>
<section class="sec3"><p>Sammy's Garage</p></section>
<section class="sec4">
<p><span id="add">+</span> Lijst toevoegen</p>
</section>
<hr></hr>
<h2>Bewaarde huizen <span id= aantal-huizen>4</span></h2>
<section class="sec5">
<img
src="assets/beige huis.jpg"
alt="funda_1"
width="150"
height="150"
/>
<div class="house-text">
<div class="ht1"><h4>Laan van Sammy 20</h4></div>
<div class="like"></div>
<div class="popup">Jasper Droppert heeft dit huis ook bewaard</div>
<div class="ht2"><p>$1.500 /maand <br> 4531 GP Arnhem</p></div>
</div>
</section>
<section class="sec6">
<img
src="assets/funda-huis.jpg"
alt="funda_2"
width="150"
height="150"
class="image-with-text"
/>
<div class="house-text">
<div class="ht1"><h4> Jasperstraat 21</h4></div>
<div class="ht2"><p>$2.800 /maand <br> 2035 NZ Haarlem</p></div>
</section>
<section class="sec7">
<img
src="assets/fancy huis.jpg"
alt="funda_3"
width="150"
height="150"
class="image-with-text"
/>
<div class="house-text">
<div class="ht1"><h4>Saschaweg 20</h4></div>
<div class="ht2"><p>$1.600 /maand <br> 1037 RK Zaandam</p></div>
</section>
<section class="sec8">
<img
src="assets/brabant huis.jpg"
alt="funda_4"
width="150"
height="150"
class="image-with-text"
/>
<div class="house-text">
<div class="ht1"><h4>Nadirakade 20</h4></div>
<div class="ht2"><p>$2.400 /maand <br> 1011 AA Amsterdam</p></div>
</section>
<script src="scripts/script.js"></script>
</body>
</html>