-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (122 loc) · 4.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Module 9</title>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/bootstrap-grid.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="header-back">
<div class="container">
<div class="row mt-5">
<div class="col-12 col-md-6 order-md-1 mt">
<a href="#" class="site-logo">URLAUBSGLÜCK</a>
</div>
<div class="col-12 col-md-6 order-first order-md-2">
<nav>
<ul class="d-inline-flex justify-content-around">
<li><a href="#" class="nav-list-item">Log in</a></li>
<li><a href="#" class="nav-list-item">Sign up</a></li>
</ul>
</nav>
</div>
</div>
<h1 class="header-title">Share your holiday dreams</h1>
<p class="header-title_sub">
And find the perfect partner to fulfill it
</p>
<button class="button header-button">
Find your holiday partner
</button>
</div>
</header>
<main>
<section class="partner-section">
<div class="container">
<h2 class="section-title">
Meet a partner for your best holiday
</h2>
<div class="row">
<div class="col-12 col-md-6 col-lg-3 order-md-1">
<div class="partner-list-item">
<div class="partner">
<img
src="img/partner_1.jpg"
alt="Partner1"
class="partner-photo"
/>
<div class="partner-photo_icon partner-1_icon"></div>
</div>
<p class="partner-name">bradley hunter</p>
<p class="partner-description">
Based in Chicago. I love playing <br />
tennis and loud music.
</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 order-md-3">
<div class="partner-list-item">
<div class="partner">
<img
src="img/partner_2.jpg"
alt="Partner2"
class="partner-photo"
/>
<div class="partner-photo_icon partner-2_icon"></div>
</div>
<p class="partner-name">lucas marsha</p>
<p class="partner-description">
I get my inspiration from nature <br />
and objects around me. I have a <br />
passion to colours, typography <br />
and skateboards.
</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 order-md-2">
<div class="partner-list-item">
<div class="partner">
<img
src="img/partner_3.jpg"
alt="Partner3"
class="partner-photo"
/>
<div class="partner-photo_icon partner-3_icon"></div>
</div>
<p class="partner-name">heather walker</p>
<p class="partner-description">
I'm a happy person that loves cats <br />
and climbing on mountains.
</p>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3 order-md-4">
<div class="partner-list-item">
<div class="partner">
<img
src="img/partner_4.jpg"
alt="Partner4"
class="partner-photo"
/>
<div class="partner-photo_icon partner-4_icon"></div>
</div>
<p class="partner-name">bradley hunter</p>
<p class="partner-description">
Based in Chicago. I love playing <br />
tennis and loud music.
</p>
</div>
</div>
</div>
<button class="button footer-button">
See other partners
</button>
</div>
</section>
</main>
</body>
</html>