-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (121 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>F | Coder</title>
<!--Remix Icons-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!--Box Icons-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css"
/>
<!--Style Dosyası-->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--Header Alanı Başlangıç-->
<header >
<a href="#" class="logo">F<span>Coder</span></a>
<nav class="navbar">
<a href="#home">Ana Sayfa</a>
<a href="">Hakkımızda</a>
<a href="">Kültürler</a>
<a href="">Bizimle Tanış</a>
</nav>
<div class="header-right">
<a href="">Follow Us</a>
<a href=""><i class="ri-instagram-fill"></i></a>
<a href=""><i class="ri-twitter-fill"></i></a>
<a href=""><i class="ri-facebook-fill"></i></a>
<div class="bx bx-menu" id="menu-icon"></div>
</div>
</header>
<!--Header Alanı Bitiş-->
<!--Home Alanı Başlangıç-->
<section id="home" class="home">
<div class="home-text">
<h5>haydi</h5>
<h1>
Senin Kendi Gezini <br />
Planlayalım
</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem commodi
iste sed sunt eveniet dolorem!
</p>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatem,
et illo hic ipsa nostrum blanditiis.
</p>
<a href="" class="btn">Randevu Al</a>
</div>
</section>
<!--Home Alanı Bitiş-->
<!--Features Alanı Başşlangıç-->
<section class="feature">
<div class="feature-content">
<!--Herbir Tur-->
<div class="row">
<div class="row-img">
<img src="./images/nap1.jpg" alt="" />
</div>
<h4>ski tour</h4>
</div>
<!--Herbir Tur-->
<!--Herbir Tur-->
<div class="row">
<div class="row-img">
<img src="./images/nap2.jpg" alt="" />
</div>
<h4>ski tour</h4>
</div>
<!--Herbir Tur-->
<!--Herbir Tur-->
<div class="row">
<div class="row-img">
<img src="./images/nap3.jpg" alt="" />
</div>
<h4>ski tour</h4>
</div>
<!--Herbir Tur-->
<!--Herbir Tur-->
<div class="row">
<div class="row-img">
<img src="./images/nap4.jpg" alt="" />
</div>
<h4>ski tour</h4>
</div>
<!--Herbir Tur-->
<!--Herbir Tur-->
<div class="row">
<div class="row-img">
<img src="./images/nap5.jpg" alt="" />
</div>
<h4>ski tour</h4>
</div>
<!--Herbir Tur-->
</div>
</section>
<!--Features Alanı Btiş-->
<!--Tatil Alanı Başlangıç-->
<section class="holiday">
<div class="holiday-img">
<img src="./images/h1.png" alt="">
</div>
<div class="holiday-text">
<h5>Ayder Yaylası , Rize</h5>
<h2>Muhteşem Bir Tatil Geçirmek İster Misin?</h2>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Nam et consequatur odio voluptates officiis voluptatum dicta nulla quibusdam officia ipsum magni corrupti, doloremque modi laboriosam provident, ut sunt aut temporibus? Aliquid unde voluptates deserunt? Totam consequuntur architecto aliquid magni quaerat.</p>
<a href="" class="btn">Daha Fazla Oku</a>
</div>
</section>
<!--Tatil Alanı Bitiş-->
<!--Script-->
<script src="main.js"></script>
</body>
</html>