-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult.html
More file actions
144 lines (141 loc) · 5.89 KB
/
result.html
File metadata and controls
144 lines (141 loc) · 5.89 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Results</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header>
<div><img src="images/amatch-logo2.png" alt=""></div>
<nav>
<ul>
<li class="animatedLink"><a href="profile.html">My Profile</a></li>
<li class="animatedLink"><a href="mychats.html">My Chats</a></li>
<li class="animatedLink"><a href="index.html">Matchmaking</a></li>
</ul>
</nav>
</header>
<main>
<!--Filter balk-->
<div id="filterBar">
<h1>Filteren</h1>
<form class="hobbyFilter" accept-charset="UTF-8" action="result.html" autocomplete="off" method="GET"
target="_blank">
<input class="filterInput" type="text" placeholder="Typ een hobby">
</form>
<form id="age" accept-charset="UTF-8" action="result.html" autocomplete="off" method="GET" target="_blank">
<select>
<option selected="selected" value="1">Leeftijd</option>
<option value="2">18</option>
<option value="3">19</option>
<option value="4">20</option>
<option value="5">21</option>
<option value="6">22</option>
<option value="7">23</option>
<option value="8">24</option>
<option value="9">25</option>
<option value="10">26</option>
<option value="11">27</option>
<option value="12">28</option>
<option value="13">29</option>
<option value="14">30</option>
</select>
</form>
</div>
<!--Profiel resultaten-->
<ul class="hobbyList">
<li class="hobby">
<span>Lezen Huisdieren Fotografie</span>
<div id="profileTile" class="resultTile">
<img src="images/frauw.png" alt="man">
<div>
<h1>Claire, 24</h1>
<p><span>Hobby's:</span>
<ul id="hobbyProfile">
<li>Lezen</li>
<li>Huisdieren</li>
<li>Fotografie</li>
</ul>
</p>
<p><span>Opleiding:</span> Journalistiek</p>
<ul class="actionButtons">
<li><button class="likeButton"></button></li>
<li><button class="discardButton"></button></li>
</ul>
</div>
</div>
</li>
<li class="hobby">
<span>Dansen Fotografie Lezen</span>
<div id="profileTile" class="resultTile">
<img src="images/frauw2.png" alt="man">
<div>
<h1>Susan, 23</h1>
<p><span>Hobby's:</span>
<ul id="hobbyProfile">
<li>Dansen</li>
<li>Fotografie</li>
<li>Lezen</li>
</ul>
</p>
<p><span>Opleiding:</span> Vertaler</p>
<ul class="actionButtons">
<li><button class="likeButton"></button></li>
<li><button class="discardButton"></button></li>
</ul>
</div>
</div>
</li>
<li class="hobby">
<span>Sporten D.I.Y. Outdoor</span>
<div id="profileTile" class="resultTile">
<img src="images/frauw4.png" alt="man">
<div>
<h1>Mia, 22</h1>
<p><span>Hobby's:</span>
<ul id="hobbyProfile">
<li>Sporten</li>
<li>D.I.Y.</li>
<li>Outdoor</li>
</ul>
<p><span>Opleiding:</span> Kunstacedemie</p>
<ul class="actionButtons">
<li><button class="likeButton"></button></li>
<li><button class="discardButton"></button></li>
</ul>
</div>
</div>
</li>
<li class="hobby">
<span>Muziek Films Koken</span>
<div id="profileTile" class="resultTile">
<img src="images/frauw3.png" alt="man">
<div>
<h1>Betty, 23</h1>
<p><span>Hobby's:</span>
<ul id="hobbyProfile">
<li>Muziek</li>
<li>Films</li>
<li>Koken</li>
</ul>
</p>
<p><span>Opleiding:</span> Management</p>
<ul class="actionButtons">
<li><button class="likeButton"></button></li>
<li><button class="discardButton"></button></li>
</ul>
</div>
</div>
</li>
</ul>
</main>
<footer>
<section>
<p>Indeling en Styling door Merlijn Bergevoet 2020 ©</p>
</section>
</footer>
<script src="js/filter.js"></script>
</body>
</html>