-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (103 loc) · 4.93 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
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
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airbnb - remade: index</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<!-- Google fonts: Nunito Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Stylesheet: RESETS -->
<link rel="stylesheet" href="./css/RESETS.css">
<!-- Stylesheet: root -->
<link rel="stylesheet" href="./css/root.css">
<!-- Stylesheet: mix -->
<link rel="stylesheet" href="./css/mix.css">
<!-- Stylesheet: Blocks -->
<link rel="stylesheet" href="./css/Blocks.css">
</head>
<!-- Body -->
<body class="Body">
<!-- Wrapper -->
<div class="Wrapper">
<!-- Header -->
<header class="Header Header_theme_home-page medium-shadow">
<!-- Header - container -->
<div class="Header__container">
<!-- Logo - link -->
<a class="Logo-link" href="./index.html">
<!-- Logo -->
<figure class="Logo">
<!-- Logo - img & h1 -->
<i class="fab fa-airbnb Logo__icon"></i>
<h1 class="Logo__title">
airbnb
</h1>
</figure>
</a>
<!-- Search-bar -->
<div class="Search-bar Header__search-bar small-shadow">
<!-- Search-bar -->
<form class="Search-bar__form" action="send">
<!-- Search-bar - input & icon -->
<input class="Search-bar__input font-bold" type="text" placeholder="Start din søgning">
<i class="fas fa-search Search-bar__icon"></i>
</form>
</div>
<!-- Header - info -->
<div class="Header__info">
<!-- Bliv vært -->
<a class="Registration font-bold" href="#">
Bliv vært
</a>
<!-- Language selector -->
<button class="Language-selector" href="#">
<i class="fas fa-globe Language-selector__icon"></i>
</button>
<!-- User tab -->
<div class="User-menu">
<!-- User tab - icons -->
<i class="fas fa-bars User-menu__menu"></i>
<i class="fas fa-user-circle User-menu__icon"></i>
</div>
</div>
</div>
</header>
<!-- Main -->
<main class="Main Main_theme_home-page">
<!-- Cards-container -->
<section class="Cards-container">
<!-- Cards-container - info -->
<section class="Cards-container__info">
<!-- Cards-container - header goes here! -->
<header class="Cards-container__header" id="Cards-container__header_id">
<!-- Cards-container - filters goes here! -->
</header>
<!-- Cards-container - filters-container -->
<ul class="Cards-container__filters-container" id="Cards-container__filters-container_id">
<!-- Filters goes here! -->
</ul>
</section>
<!-- Line -->
<hr class="line">
<!-- Cards-container - container -->
<div class="Cards-container__container" id="Cards-container__container_id">
<!-- Cards goes here! -->
</div>
</section>
<!-- Map -->
<aside class="Map">
<!-- Map - iframe -->
<iframe class="Map__iframe" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.openstreetmap.org/export/embed.html?bbox=3.0102539062500004%2C53.350551318399916%2C17.512207031250004%2C58.93300426869364&layer=mapnik"></iframe></small>
</aside>
</main>
</div>
<!-- JavaScript -->
<script src="./js/filters.js"></script>
<script src="./js/cards.js"></script>
</body>
</html>