-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10b.html
More file actions
124 lines (114 loc) · 4.52 KB
/
Copy path10b.html
File metadata and controls
124 lines (114 loc) · 4.52 KB
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
<!DOCTYPE html>
<html lang="hu">
<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">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="media/icons/favi.webp">
<link rel="stylesheet" href="owl.carousel.css">
<title>Puskas 2020b 10.B</title>
</head>
<body>
<div class="webbar">
<div class="direction-on-size-3">
<a href="12b" class="layout-horizontal toolbar">
<img src="media/class/logo.webp" alt="Logo">
<h1 class>Puskás 2020b</h1>
</a>
<div class="layout-horizontal tab-layout">
<a href="/" class="tab">Kezdőlap</a>
<a href="10b" class="tab selected">10.B</a>
<a href="11b" class="tab">11.B</a>
<a href="12b" class="tab">12.B</a>
<a href="13b" class="tab">13.B</a>
</div>
</div>
<a id="theme" href="javascript:toggle_theme();">
<img id="icon-moon" src="media/icons/moon.svg">
<img id="icon-sun" src="media/icons/sun.svg">
</a>
</div>
<div class="main-scroll-area">
<div class="banner jesus">
<div class="direction-on-size banner-foreground jesus">
<div>
<h1>Nagyban gondolkozunk</h1>
<h2>Ádám</h2>
</div>
</div>
<img src="media/class/10b/banner.webp" alt="Banner">
</div>
<a href="#about-me" class="arrow-container">
<div alt="down arrow" class="arrow-bg"></div>
<img src="media/icons/more.svg" alt="down arrow" class="arrow">
</a>
<div class="main-content">
<h3>Sajnos másodikak lettünk</h3>
<img src="media/class/10b/results.webp" style="width: 100% !important; max-width: none; height: auto;">
<h3>Programjaink</h3>
<img src="media/class/10b/posters/programs.png" style="width: 100% !important; max-width: none; height: auto;">
<h3>Kampányvideók</h3>
<div class="bd-grid owl-carousel">
<a class="summary-container" href="https://www.youtube.com/watch?v=jabpUMASgM4" target="_blank">
<img src="https://img.youtube.com/vi/jabpUMASgM4/maxresdefault.jpg"></img>
<h3>Red Light, Green Light | Program Bemutató</h3>
<img src="media/icons/youtube.svg" alt="YouTube icon"></img>
</a>
<a class="summary-container" href="https://www.youtube.com/watch?v=M6UY0zGmdkg" target="_blank">
<img src="https://img.youtube.com/vi/M6UY0zGmdkg/maxresdefault.jpg"></img>
<h3>Among Us valós életben | Program Bemutató</h3>
<img src="media/icons/youtube.svg" alt="YouTube icon"></img>
</a>
<a class="summary-container" href="https://www.youtube.com/watch?v=P5fSDjbECRg" target="_blank">
<img src="https://img.youtube.com/vi/P5fSDjbECRg/maxresdefault.jpg"></img>
<h3>Beat Saber | Program Bemutató</h3>
<img src="media/icons/youtube.svg" alt="YouTube icon"></img>
</a>
<div class="summary-container center">
<h2>Removed</h2>
</div>
</div>
<a href='https://www.youtube.com/@puskas2020b' target="_blank" class="primary singular">Iratkozz fel <img src="media/icons/out.svg"></a>
</div>
</div>
<div class="layout-horizontal navigationbar-div">
<a href="index" class="tab">Kezdőlap</a>
<a href="10b" class="tab selected">10.B</a>
<a href="11b" class="tab">11.B</a>
<a href="12b" class="tab">12.B</a>
<a href="13b" class="tab">13.B</a>
</div>
<script src="Theme.js"></script>
<!-- Jquery CDN -->
<script
src="https://code.jquery.com/jquery-3.6.0.js"
integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk="
crossorigin="anonymous"></script>
<!-- Owl Slider -->
<script src="owl.carousel.js"></script>
<script>
$('.owl-carousel').owlCarousel({
loop:true,
nav:true,
margin: 15,
items: 3,
autoplay:true,
autoplayTimeout:5000,
autoplayHoverPause:true,
dots:false ,
responsive:{
0:{
items:1
},
700:{
items:2
},
1000:{
items:3
}
}
})
</script>
</body>
</html>