├── LICENSE
├── README.md
└── hotelSite
├── index.css
└── index.html
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 GÖKMEN NİŞANCI
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6 |
7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 | Contributors
11 | Gökmen Nişancı
12 | License & copyright
13 | © Gökmen Nişancı , Web Software and Design
14 | Licensed under the MIT License,
15 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # hotelSite
2 |
3 |
4 | https://user-images.githubusercontent.com/91744618/139847940-bb44f1a6-cd3e-44ef-9a7a-82284378db3f.mp4
5 |
6 |
13 |
14 |
24 |
25 |
26 |
27 |
28 | © Gökmen Nişancı / Web Developer.
29 |
30 |
31 |
32 | [](https://git.io/typing-svg)
33 |
--------------------------------------------------------------------------------
/hotelSite/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0px;
3 | border: 0px;
4 | }
5 |
6 |
7 | /* homePage (CONTENT!!!) */
8 |
9 | #tagContent {
10 | display: flex;
11 | margin-top: 1em;
12 | margin-left: 24em;
13 | }
14 |
15 | #tagContent fieldset {
16 | width: 12em;
17 | height: 38em;
18 | border: 2px solid #ececec;
19 | }
20 |
21 |
22 | /*tag connect start icon style */
23 |
24 | #tagContent #startIcon {
25 | margin-top: 6em;
26 | margin-bottom: 2em;
27 | margin-left: 2em;
28 | }
29 |
30 | #tagContent #startIcon input {
31 | margin-left: 1.55em;
32 | }
33 |
34 | #tagContent #startIcon p {
35 | margin-top: 2em;
36 | }
37 |
38 | #homeContent fieldset {
39 | width: 64em;
40 | height: 38em;
41 | border: 2px solid #ececec;
42 | }
43 |
44 |
45 | /*---------------*/
46 |
47 | #barTopAll {
48 | display: flex;
49 | }
50 |
51 |
52 | /*leftbar style */
53 |
54 |
55 | /*leftbar style list*/
56 |
57 | #leftBarTop {
58 | display: flex;
59 | margin-left: 1em;
60 | margin-top: 0.55em;
61 | }
62 |
63 | #tagClick a:hover {
64 | background-color: #f2f2f2;
65 | color: #3d4aff;
66 | }
67 |
68 | #tagClick ul {
69 | display: flex;
70 | }
71 |
72 | #tagClick ul li {
73 | list-style: none;
74 | margin-right: 1em;
75 | margin-top: 0.55em;
76 | font-size: 16px;
77 | }
78 |
79 | #tagClick a {
80 | text-decoration: none;
81 | color: #000000;
82 | }
83 |
84 |
85 | /*---------------------------*/
86 |
87 |
88 | /*rightbar style*/
89 |
90 | #rightBarTop {
91 | display: flex;
92 | margin-left: 38em;
93 | margin-top: 1em;
94 | }
95 |
96 |
97 | /*button add tag*/
98 |
99 | #clickVenue {
100 | width: 12em;
101 | height: 3em;
102 | margin-right: 1em;
103 | border-radius: 0.65em;
104 | font-size: 16px;
105 | color: #ff3838;
106 | border: 2px solid #ff3838;
107 | background-color: #f2f2f2;
108 | }
109 |
110 | #clickVenue:hover {
111 | background-color: #ff3838;
112 | color: #f2f2f2;
113 | }
114 |
115 |
116 | /*search country */
117 |
118 | #countryName {
119 | width: 8em;
120 | height: 2em;
121 | margin-left: 1em;
122 | margin-right: 1em;
123 | margin-top: 1em;
124 | }
125 |
126 |
127 | /*login */
128 |
129 | #rightBarTop a {
130 | text-decoration: none;
131 | margin-left: 1em;
132 | margin-right: 2em;
133 | margin-top: 1em;
134 | }
135 |
136 |
137 | /*register new account.*/
138 |
139 | #clickRegister {
140 | width: 12em;
141 | height: 3em;
142 | margin-right: 1em;
143 | border-radius: 0.65em;
144 | font-size: 16px;
145 | color: #3d4aff;
146 | background-color: #f2f2f2;
147 | border: 2px solid #3d4aff;
148 | }
149 |
150 | #clickRegister:hover {
151 | background-color: #3d4aff;
152 | color: #f2f2f2;
153 | }
154 |
155 |
156 | /*---------------------------*/
157 |
158 |
159 | /*searc tag menu*/
160 |
161 | #searchTag fieldset {
162 | background-color: #000baa;
163 | margin-top: 1em;
164 | height: 4em;
165 | border: 2px solid #000baa;
166 | }
167 |
168 |
169 | /*--------*/
170 |
171 | #filteringTag fieldset {
172 | height: 4em;
173 | background-color: #d3d3d3;
174 | display: flex;
175 | }
176 |
177 |
178 | /*love icon images */
179 |
180 | #filteringTag img {
181 | margin-top: 0.15em;
182 | margin-left: 12em;
183 | }
184 |
185 | #filteringTag fieldset ul {
186 | margin-left: 21em;
187 | display: flex;
188 | }
189 |
190 | #filteringTag input {
191 | border-radius: 0.45em;
192 | width: 18em;
193 | height: 3em;
194 | margin-left: 1em;
195 | }
196 |
197 | #filteringTag input::-webkit-input-placeholder {
198 | color: #00065c;
199 | text-align: start;
200 | }
201 |
202 | #filteringTag ul li {
203 | list-style: none;
204 | margin-right: 1.5em;
205 | }
206 |
207 | #filteringTag li img {
208 | margin-left: 12em;
209 | }
210 |
211 | #filteringTag .btn-filter {
212 | width: 9em;
213 | height: 3em;
214 | border-radius: 1em;
215 | background-color: #00065c;
216 | color: #f2f2f2;
217 | }
218 |
219 | #filteringTag .btn-filter:hover {
220 | color: #00065c;
221 | background-color: #f2f2f2;
222 | border: 2px solid #00065c
223 | }
224 |
225 |
226 | /*-------------*/
227 |
228 |
229 | /*fieldset STYLE CONTENT */
230 |
231 | #fieldsetContent1 {
232 | display: flex;
233 | }
234 |
235 | #fieldsetContent1 img {
236 | margin-left: 2em;
237 | margin-top: 1em;
238 | }
239 |
240 | #fieldsetContent1 p {
241 | font-size: 18px;
242 | margin-left: 3.5em;
243 | }
244 |
245 | #fieldsetContent1 fieldset {
246 | width: 18em;
247 | height: 21em;
248 | margin-left: 1em;
249 | margin-top: 1em;
250 | }
251 |
252 | .btn-blue {
253 | width: 8em;
254 | height: 2em;
255 | margin-left: 5.5em;
256 | background-color: #3d4aff;
257 | color: #f2f2f2;
258 | font-size: 16px;
259 | }
260 |
261 | .btn-blue:hover {
262 | background-color: #f2f2f2;
263 | color: #3d4aff;
264 | }
265 |
266 |
267 | /*horizontalFieldset*/
268 |
269 | #horizontalFieldset fieldset {
270 | margin-top: 1em;
271 | width: 60em;
272 | height: 12em;
273 | margin-left: 1em;
274 | }
275 |
276 |
277 | /*-----------------*/
--------------------------------------------------------------------------------
/hotelSite/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | Home Page
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
Nisancihotel.com
20 |
21 |
22 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
42 |
Login
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
96 |
97 |
98 |
99 |
100 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
--------------------------------------------------------------------------------