-
Notifications
You must be signed in to change notification settings - Fork 0
/
index1.html
652 lines (547 loc) · 32.6 KB
/
index1.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
<!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>Borjan Sazdov</title>
<link rel="stylesheet" href="app.css">
<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=Amatic+SC:wght@400;700&family=Courier+Prime&family=Fira+Code:wght@300;400;500;600&family=Inconsolata:wght@200;300;400;500;600&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<script src="https://kit.fontawesome.com/a1743c748b.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
jQuery(function ($) {
$("#rss-feeds").rss("https://publicist.mk/rss",
{
entryTemplate: '<div class="newsContent"><a href="{url}">{title}</a><br/>{teaserImage}{shortBodyPlain}</div>',
limit: 2
});
});
</script>
<script>
function previewFile(input) {
var file = $("input[type=file]").get(0).files[0];
$("#prikaci").hide();
if (file) {
var reader = new FileReader();
reader.onload = function () {
$("#previewImg").attr("src", reader.result);
}
reader.readAsDataURL(file);
}
}
</script>
</head>
<body>
<header>
<div class="container">
<h1 class="logo"><borjan_sazdov></h1>
<nav>
<ul id="navbar">
<li><a href="#Home">.home</a></li>
<li><a href="#Fav">.fav</a></li>
<li><a href="#Gal">.gallery</a></li>
<li><a href="#Blog">.blog</a></li>
<li><a href="#about">.about</a></li>
<li><a href="#contact">.contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="header1" id="Home">
<h1 id="firstText"><span class="bracket"><h1></span><span class="par"> Aloha! </span><span
class="bracket"></h1></span>
</h1>
</section>
<section class="intro">
<div class="introduction">
<img id="SelfPortrait" src="self.jpeg" alt="photo of myself">
</div>
<div class="introduction" id="about">
<p>
<p>
My name is Borjan Sazdov, I am 21 years old and I live in Skopje. I am an
aspiring Computer Science student at "FEEIT (Faculty of electrical Engineering -
Skopje)" enrolled in the 3rd year of undergraduate studies, with a passion for Full
Stack Developing. Scroll down the site to explore the things that make me who I am.
</p>
</p>
</div>
</section>
<section class="cv">
<h2 id="CV"><Curriculum Vitae></h2>
<div class="CVdiv">
<div class="CV">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sequi quis facere, modi
assumenda
nisi, reiciendis maiores quos error commodi explicabo ullam ratione sit consectetur magnam alias
quidem,
repellat eum culpa.
</div>
<div class="CV">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sequi quis facere, modi
assumenda
nisi, reiciendis maiores quos error commodi explicabo ullam ratione sit consectetur magnam alias
quidem,
repellat eum culpa.
</div>
<div class="CV">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Sequi quis facere, modi
assumenda
nisi, reiciendis maiores quos error commodi explicabo ullam ratione sit consectetur magnam alias
quidem,
repellat eum culpa.
</div>
</div>
</section>
<section class="gallery" id="Gal">
<p><Minimalism></p>
<div class="galerija">
<div class="post">
<img src="https://images.unsplash.com/photo-1522120691812-dcdfb625f397?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=387&q=80"
alt="img1">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like0">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs0" value="0" name="">
</div>
<div class="box">
<p id="comment1" class="c1"></p>
<form onsubmit="comment1()">
<input class="inputComment" type="text" id="input1" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1521206698660-5e077ff6f9c8?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=386&q=80"
alt="img3">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like1">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs1" value="0" name="">
</div>
<div class="box">
<p id="comment2" class="c1"></p>
<form onsubmit="comment2()">
<input class="inputComment" type="text" id="input2" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1504418682362-6ad6257cb2fb?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=870&q=80"
alt="img4">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like2">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs2" value="0" name="">
</div>
<div class="box">
<p id="comment3" class="c1"></p>
<form onsubmit="comment3()">
<input class="inputComment" type="text" id="input3" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1512514076443-1eef59c260b0?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=435&q=80"
alt="img5">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like3">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs3" value="0" name="">
</div>
<div class="box">
<p id="comment4" class="c1"></p>
<form onsubmit="comment4()">
<input class="inputComment" type="text" id="input4" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/reserve/LJIZlzHgQ7WPSh5KVTCB_Typewriter.jpg?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=396&q=80"
alt="img6">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like4">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs4" value="0" name="">
</div>
<div class="box">
<p id="comment5" class="c1"></p>
<form onsubmit="comment5()">
<input class="inputComment" type="text" id="input5" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1598751654513-bd903cff4b0b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=375&q=80"
alt="img7">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like5">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs5" value="0" name="">
</div>
<div class="box">
<p id="comment6" class="c1"></p>
<form onsubmit="comment6()">
<input class="inputComment" type="text" id="input6" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1617076678363-99dd6eb5150b?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=387&q=80"
alt="img8">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like6">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs6" value="0" name="">
</div>
<div class="box">
<p id="comment7" class="c1"></p>
<form onsubmit="comment7()">
<input class="inputComment" type="text" id="input7" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1457062673746-3c8d0b60aa44?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=435&q=80"
alt="img9">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like7">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs7" value="0" name="">
</div>
<div class="box">
<p id="comment8" class="c1"></p>
<form onsubmit="comment8()">
<input class="inputComment" type="text" id="input8" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img src="https://images.unsplash.com/photo-1512433155034-67102234a5e4?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=388&q=80"
alt="img2">
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like8">
<i class=" far fa-heart"></i>
</button>
<input type="number" id="inputs8" value="0" name="">
</div>
<div class="box">
<p id="comment9" class="c1"></p>
<form onsubmit="comment9()">
<input class="inputComment" type="text" id="input9" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
<div class="post">
<img id="previewImg">
<p id="prikaci">
<input type="file" name="photo" onchange="previewFile(this);" required>
</p>
<div class="likeComment">
<div class="likeDiv">
<button class="likebtn" id="like9">
<i class="far fa-heart"></i>
</button>
<input type="number" id="inputs9" value="0" name="">
</div>
<div class="box">
<p id="comment10" class="c1"></p>
<form onsubmit="comment10()">
<input class="inputComment" type="text" id="input10" placeholder="Enter comment"
autocapitalize="off" />
<input type="submit" id="submitbutton" value="Add comment" hidden>
</form>
</div>
</div>
</div>
</div>
</section>
</section>
<section class="favorite" id="Fav">
<div class="f1">
<h3><span class="favH3"><</span> Astronomy <span class="favH3">></span></h3>
<div id=#astroP>
<p class="blackHole" id="firstP">Black holes are a constant source of fascination to many due to
their
mysterious nature.
</p>
<p class="blackHole">
They are a potent and (kind of) visible reminder that there are mysteries running wild in the
universe.
</p>
<p class="blackHole">
There are places that we can point to with our telescopes and say, yes, right there that's where
physics breaks down.
</p>
<p class="blackHole" id="lastP">
Hence, endless fascination.
</p>
</div>
<div class="astro_container">
<div class="outer-circle">
<div class="inner-circle">
</div>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<div class="f2">
<h3><span class="favH3"><</span> Movies <span class="favH3">></span></h3>
<div class="f1container">
<div class="movie">
<img src="https://doms2cents.com/wp-content/uploads/2021/09/interstellar-et00019066-19-02-2021-02-25-12.jpg"
alt="interstellar">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zSWdZVtXT7E"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<div class="genre">
<button>Adventure</button> <button>Drama</button> <button>Sci-Fi</button>
</div>
<p>A team of explorers travel through a wormhole in space in an attempt to ensure humanity's
survival.</p>
<p>Director: Christopher Nolan</p>
<p>Writers: Jonathan Nolan and Christopher Nolan</p>
<p>Cast: Matthew McConaughey, Anne Hathaway, Jessica Chastain</p>
<p><i class="fab fa-imdb"></i> IMDB Rating: 8.6/10 <i class="fas fa-star"></i></p>
<div class="align">
<p>Watch on </p> <a href="https://www.netflix.com/mk/title/70305903"><svg
xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48"
viewBox="0 0 48 48" style=" fill:#000000;">
<path fill="#F44336"
d="M5 18c.7 0 1.3 0 2 0 0 4.1 0 8.1 0 12.2-.8.1-1.6.2-2.3.3-1-2.5-2.7-6.8-2.7-6.8S2 28 2 30.8c.4 0-.2 0-2 .3 0-4.3 0-8.7 0-13 .8 0 2 0 2 0l3 7.3C5 25.4 5 20.8 5 18zM14.7 20c0-.6 0-1.4 0-2-1.9 0-3.8 0-5.7 0 0 4 0 8 0 12 1.9-.2 3.8-.4 5.7-.6 0-.6 0-1.4 0-2-1.2.1-2.4.1-3.7.4 0-1.1 0-1.7 0-2.8.9 0 2.1 0 3 0 0-.6 0-1.4 0-2-.9 0-2.1 0-3 0 0-1.1 0-1.9 0-3C11.6 20.1 14.2 20.1 14.7 20zM16 20c.1 0 1.9 0 2 0 0 3.2 0 6 0 9.2.7 0 1.3 0 2-.1 0-3.2 0-5.9 0-9.1.7 0 1.3 0 2 0 0-.6 0-1.4 0-2-2.1 0-3.9 0-6 0C16 18.6 16 19.4 16 20zM28.6 18c-1.9 0-3.7 0-5.6 0 0 3.8 0 7.2 0 11 .2 0 .4 0 .6 0 .4 0 .9 0 1.4 0 0-1.6 0-2.4 0-4 .1 0 2.4 0 2.7 0 0-.6 0-1.4 0-2-.3 0-2.6 0-2.7 0 0-1 0-2 0-3 .2 0 3.1 0 3.6 0C28.6 19.5 28.6 18.6 28.6 18zM32 27.5c0-3.3 0-6.2 0-9.5-.7 0-1.3 0-2 0 0 3.8 0 7.4 0 11.2 1.8.1 3.6.2 5.4.4 0-.6 0-1.3 0-1.9C34.3 27.6 33.1 27.5 32 27.5zM37 29.7c.7.1 1.3.1 2 .2 0-4 0-7.9 0-11.9-.7 0-1.3 0-2 0C37 22 37 25.8 37 29.7zM45.4 24.2c.9-2 1.7-4 2.6-6.1-.7 0-1.5 0-2.2 0-.5 1.3-.9 2.2-1.4 3.4-.5-1.3-.8-2.2-1.3-3.4-.7 0-1.5 0-2.2 0 .8 2 1.5 4 2.4 6.1-.9 2-1.7 4-2.6 6 .7.1 1.4.2 2.1.3.5-1.3 1-2.2 1.5-3.5.5 1.4 1 2.4 1.5 3.8.7.1 1.6.2 2.3.3C47.1 28.7 46.2 26.3 45.4 24.2z">
</path>
</svg></a>
</div>
</div>
<div class="movie">
<img src="https://m.media-amazon.com/images/M/MV5BNGNhMDIzZTUtNTBlZi00MTRlLWFjM2ItYzViMjE3YzI5MjljXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg"
alt="pulp fiction">
<iframe width="560" height="315" src="https://www.youtube.com/embed/s7EdQ4FqbhY"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<div class="genre">
<button>Crime</button> <button>Drama</button>
</div>
<p>The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits
intertwine in four tales of violence and redemption.</p>
<p>Director: Quentin Tarantino</p>
<p>Writers: Quentin Tarantino, Roger Avary</p>
<p>Cast: John Travolta, Uma Thurman, Samuel L.Jacskon</p>
<p><i class="fab fa-imdb"></i> IMDB Rating: 8.9/10 <i class="fas fa-star"></i></p>
<div class="align">
<p>Watch on </p> <a href="https://www.netflix.com/ca/title/880640"><svg
xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48"
viewBox="0 0 48 48" style=" fill:#000000;">
<path fill="#F44336"
d="M5 18c.7 0 1.3 0 2 0 0 4.1 0 8.1 0 12.2-.8.1-1.6.2-2.3.3-1-2.5-2.7-6.8-2.7-6.8S2 28 2 30.8c.4 0-.2 0-2 .3 0-4.3 0-8.7 0-13 .8 0 2 0 2 0l3 7.3C5 25.4 5 20.8 5 18zM14.7 20c0-.6 0-1.4 0-2-1.9 0-3.8 0-5.7 0 0 4 0 8 0 12 1.9-.2 3.8-.4 5.7-.6 0-.6 0-1.4 0-2-1.2.1-2.4.1-3.7.4 0-1.1 0-1.7 0-2.8.9 0 2.1 0 3 0 0-.6 0-1.4 0-2-.9 0-2.1 0-3 0 0-1.1 0-1.9 0-3C11.6 20.1 14.2 20.1 14.7 20zM16 20c.1 0 1.9 0 2 0 0 3.2 0 6 0 9.2.7 0 1.3 0 2-.1 0-3.2 0-5.9 0-9.1.7 0 1.3 0 2 0 0-.6 0-1.4 0-2-2.1 0-3.9 0-6 0C16 18.6 16 19.4 16 20zM28.6 18c-1.9 0-3.7 0-5.6 0 0 3.8 0 7.2 0 11 .2 0 .4 0 .6 0 .4 0 .9 0 1.4 0 0-1.6 0-2.4 0-4 .1 0 2.4 0 2.7 0 0-.6 0-1.4 0-2-.3 0-2.6 0-2.7 0 0-1 0-2 0-3 .2 0 3.1 0 3.6 0C28.6 19.5 28.6 18.6 28.6 18zM32 27.5c0-3.3 0-6.2 0-9.5-.7 0-1.3 0-2 0 0 3.8 0 7.4 0 11.2 1.8.1 3.6.2 5.4.4 0-.6 0-1.3 0-1.9C34.3 27.6 33.1 27.5 32 27.5zM37 29.7c.7.1 1.3.1 2 .2 0-4 0-7.9 0-11.9-.7 0-1.3 0-2 0C37 22 37 25.8 37 29.7zM45.4 24.2c.9-2 1.7-4 2.6-6.1-.7 0-1.5 0-2.2 0-.5 1.3-.9 2.2-1.4 3.4-.5-1.3-.8-2.2-1.3-3.4-.7 0-1.5 0-2.2 0 .8 2 1.5 4 2.4 6.1-.9 2-1.7 4-2.6 6 .7.1 1.4.2 2.1.3.5-1.3 1-2.2 1.5-3.5.5 1.4 1 2.4 1.5 3.8.7.1 1.6.2 2.3.3C47.1 28.7 46.2 26.3 45.4 24.2z">
</path>
</svg></a>
</div>
</div>
<div class="movie" id="lastmovie">
<img src="https://m.media-amazon.com/images/M/MV5BOTJiNDEzOWYtMTVjOC00ZjlmLWE0NGMtZmE1OWVmZDQ2OWJhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_FMjpg_UX1000_.jpg"
alt="inglorious basterds">
<iframe width="560" height="315" src="https://www.youtube.com/embed/KnrRy6kSFF0"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
<div class="genre">
<button>Adventure</button> <button>Drama</button> <button>War</button>
</div>
<p>In Nazi-occupied France during World War II, a plan to assassinate Nazi leaders by a group of
Jewish U.S. soldiers coincides with a theatre owner's vengeful plans for the same.</p>
<p>Director: Quentin Tarantino</p>
<p>Writers: Quentin Tarantino</p>
<p>Cast: Brad Pitt, Christopher Waltz, Diane Kruger, Eli Roth</p>
<p><i class="fab fa-imdb"></i> IMDB Rating: 8.3/10 <i class="fas fa-star"></i></p>
<div class="align">
<p>Watch on </p> <a href="https://www.netflix.com/mk/title/70108777"><svg
xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" width="48" height="48"
viewBox="0 0 48 48" style=" fill:#000000;">
<path fill="#F44336"
d="M5 18c.7 0 1.3 0 2 0 0 4.1 0 8.1 0 12.2-.8.1-1.6.2-2.3.3-1-2.5-2.7-6.8-2.7-6.8S2 28 2 30.8c.4 0-.2 0-2 .3 0-4.3 0-8.7 0-13 .8 0 2 0 2 0l3 7.3C5 25.4 5 20.8 5 18zM14.7 20c0-.6 0-1.4 0-2-1.9 0-3.8 0-5.7 0 0 4 0 8 0 12 1.9-.2 3.8-.4 5.7-.6 0-.6 0-1.4 0-2-1.2.1-2.4.1-3.7.4 0-1.1 0-1.7 0-2.8.9 0 2.1 0 3 0 0-.6 0-1.4 0-2-.9 0-2.1 0-3 0 0-1.1 0-1.9 0-3C11.6 20.1 14.2 20.1 14.7 20zM16 20c.1 0 1.9 0 2 0 0 3.2 0 6 0 9.2.7 0 1.3 0 2-.1 0-3.2 0-5.9 0-9.1.7 0 1.3 0 2 0 0-.6 0-1.4 0-2-2.1 0-3.9 0-6 0C16 18.6 16 19.4 16 20zM28.6 18c-1.9 0-3.7 0-5.6 0 0 3.8 0 7.2 0 11 .2 0 .4 0 .6 0 .4 0 .9 0 1.4 0 0-1.6 0-2.4 0-4 .1 0 2.4 0 2.7 0 0-.6 0-1.4 0-2-.3 0-2.6 0-2.7 0 0-1 0-2 0-3 .2 0 3.1 0 3.6 0C28.6 19.5 28.6 18.6 28.6 18zM32 27.5c0-3.3 0-6.2 0-9.5-.7 0-1.3 0-2 0 0 3.8 0 7.4 0 11.2 1.8.1 3.6.2 5.4.4 0-.6 0-1.3 0-1.9C34.3 27.6 33.1 27.5 32 27.5zM37 29.7c.7.1 1.3.1 2 .2 0-4 0-7.9 0-11.9-.7 0-1.3 0-2 0C37 22 37 25.8 37 29.7zM45.4 24.2c.9-2 1.7-4 2.6-6.1-.7 0-1.5 0-2.2 0-.5 1.3-.9 2.2-1.4 3.4-.5-1.3-.8-2.2-1.3-3.4-.7 0-1.5 0-2.2 0 .8 2 1.5 4 2.4 6.1-.9 2-1.7 4-2.6 6 .7.1 1.4.2 2.1.3.5-1.3 1-2.2 1.5-3.5.5 1.4 1 2.4 1.5 3.8.7.1 1.6.2 2.3.3C47.1 28.7 46.2 26.3 45.4 24.2z">
</path></a>
</svg>
</div>
</div>
</div>
</div>
<div class="f3">
<h3><span class="favH3"><</span> Music <span class="favH3">></span></h3>
<div class="f3container">
<div class="artist">
<img src="https://dancingastro-wpengine.netdna-ssl.com/wp-content/uploads/2020/08/90429603_569075417037716_9005719637200116259_n.jpg"
alt="amelie lens">
<p><a class="spotify" href="#spotifylink"><i class="fab fa-spotify"></i> <span>|</span> Amelie
Lens
</a>
</p>
</div>
<div class="artist">
<img src="https://i2.wp.com/electronicgroove.com/wp-content/uploads/2021/04/boris-brejcha-1.jpg?fit=940%2C627&ssl=1"
alt="boris brejcha">
<p><a class="spotify" href="#spotifylink"><i class="fab fa-spotify"></i> <span>|</span> Boris
Brejcha
</a></p>
</div>
<div class="artist">
<img src="https://images-na.ssl-images-amazon.com/images/S/pv-target-images/a29f5c7f6ed1eeff7823a0f344a1375bb2e05043a9b3f454a4c8438629200f43._SX1080_.jpg"
alt="tupac">
<p><a class="spotify" href="#spotifylink"><i class="fab fa-spotify"></i> <span>|</span> 2Pac
</a></p>
</div>
<div class="artist">
<img src="https://www.artmajeur.com/medias/standard/j/o/johnvonbrown/artwork/9494707_biggie-sn-low.jpg"
alt="biggie">
<p><a class="spotify" href="#spotifylink"><i class="fab fa-spotify"></i> <span>|</span> The
Notorious B.I.G
</a></p>
</div>
</div>
</div>
</section>
<section class="blog" id="Blog">
<form id="blog-form" onsubmit="blogPost()">
<!-- <div>
<p>
<label for="username">Username</label>
</p>
<input type="text" placeholder="johnLocke123" id="username" required>
</div> -->
<div>
<p>
<label for="title">Title of the Post</label>
</p>
<input type="text" id="title" placeholder="Philosphy of Life" required>
</div>
<div>
<p>
<label for="spam">1 + 1 =</label>
</p>
<input type="text" placeholder="Antispam Question" id="spam" required>
</div>
<div>
<p>
<label for="blogpost">Content of the Post</label>
</p>
<textarea name="blogp" id="blogpost" cols="80" rows="10"
placeholder="Enter your Content"></textarea>
</div>
<div id="kopce"><button id="submit">Submit</button></div>
</form>
</section>
<section class="blogPosts">
<div id="searchpost">
<label for="searchbratmi">Search Post:</label>
<input type="text" id="searchbratmi">
<button onClick="handleDelete()">Delete Post</button>
<input type="number" id="postNumber" placeholder="Post number">
</div>
<div id="submittedDiv">
</div>
</section>
</main>
<section class="pollParent">
<h3><span class="favH3"><</span> Survey <span class="favH3">></span></h3>
<p id="parag">Please take a minute of your time to fill out this form and help in the improvment of the site!
</p>
<section class="poll">
<form id="survey-form">
<p>
<label for="name">Name</label>
</p>
<input id="name" type="text" required>
<p>
<label for="surname">Surname</label>
</p>
<input id="surname" type="text" required>
<div id="gender">
<label for="Male"> Male</label>
<input id="Male" type="radio" name="m-f">
<label for="Female"> Female</label>
<input id="Female" type="radio" name="m-f">
</div>
<div id="rate">
<p>Rate Us!</p>
<input type="range" id="rng" name="rate" min="0" max="10" value="0" step="1">
</div>
<input id="opinion" type="text" placeholder="Write a Review">
<button onclick="sendSurvey()" id="submit" type="submit">Submit</button>
</form>
</section>
</section>
<footer id="contact">
<You can find me on>
<div class="footer">
<a href="#linkedln"><button>LinkedIn</button></a>
<a href="#facebook"><button>Facebook</button></a>
<a href="#Twitter"><button>Twitter</button></a>
<a href="#Instagram"><button>Instagram</button></a>
</div>
<span>©All rights reserved</span>
</footer>
<script src=instagram.js></script>
<script src=blog.js></script>
<script>
const sendSurvey = () => {
event.preventDefault()
var name = document.getElementById("name").value;
var surname = document.getElementById("surname").value;
var result = 'Thank you for your contribution ' + name + ' ' + surname + '. We appreciate your opinion';
window.alert(result);
}
</script>
</body>
</html>