-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (90 loc) · 3.58 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
<!DOCTYPE HTML>
<style>
@media only screen and (max-width: 900px) {
footer {
margin-top: 50px;
}
}
</style>
<html>
<head>
<script src="https://kit.fontawesome.com/1e017f19a0.js" crossorigin="anonymous"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="https://artelokuvaoy.com/favicon.ico">
<title>Art Elokuva OY</title>
</head>
<header>
<div id="brand"> <img src="https://artelokuvaoy.com/brand.png" alt="lohi" width="45" height="45"><a href="/">Art Elokuva OY</a></div>
<nav>
<ul>
<li><a href="index.html">Koti</a></li>
<li><a href="https://youtube.com/channel/UC_4SOL8f-NygQWdw6-_DclQ">Videot</a></li>
<li><a href="pelit.html">Pelit</a></li>
<li><a href="https://patreon.com/artelokuvaoy">Patreon</a></li>
<li><a href="tyopaikat.html">Työpaikat</a></li>
<li><a href="ehdotukset.html">Ehdotukset</a></li>
<li><a href="contact.html">Ota yhteyttä</a></li>
</ul>
</nav>
<div id="hamburger-icon" onclick="toggleMobileMenu(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
<ul class="mobile-menu">
<li><a href="index.html">Koti</a></li>
<li><a href="https://youtube.com/channel/UC_4SOL8f-NygQWdw6-_DclQ">Videot</a></li>
<li><a href="pelit.html">Pelit</a></li>
<li><a href="https://patreon.com/artelokuvaoy">Patreon</a></li>
<li><a href="tyopaikat.html">Työpaikat</a></li>
<li><a href="ehdotukset.html">Ehdotukset</a></li>
<li><a href="contact.html">Ota yhteyttä</a></li>
</ul>
</div>
</header>
<body>
<br>
<div class="homecenter" id="homecenter">
<br>
<br>
<h2 style="text-align: center">Tervetuloa Art Elokuva OY:n nettisivuille!</h2>
<br>
<h3 style="text-align: center">Tietoja</h3>
<br>
<div>
<p style="text-align: center">Art Elokuva OY tekee monenlaista mediasisältöä. Täältä löydät tekemiämme projekteja.</p>
<button onclick="location.href='https://www.youtube.com/channel/UC_4SOL8f-NygQWdw6-_DclQ'" class="button" style="vertical-align:middle;background-color: #5145f7;"><span>Videot</span></button>
<button onclick="location.href='https://www.patreon.com/artelokuvaoy'" class="button" style="vertical-align:middle;background-color: #5145f7;"><span>Anna rahaa</span></button>
<button onclick="location.href='/pelit.html'" class="button" style="vertical-align:middle;background-color: #5145f7;"><span>Pelit</span></button>
</div>
</div>
<script>
function toggleMobileMenu(menu) {
menu.classList.toggle('open');
}
$(document).ready(function() {
setTimeout(function() {
$('.alert').addClass('active');
}, 2000);
$('.close').click(function() {
$('.alert').removeClass('active');
});
});
</script>
<footer>
<div id="footer-links">
<a href="https://www.youtube.com/channel/UC_4SOL8f-NygQWdw6-_DclQ"><i class="fa-2x fa-brands fa-youtube"></i></a>
<a href="https://github.com/makkarakka3/artnettisivu"><i class="fa-2x fa-brands fa-github"></i></i></a>
</div>
<div id="legal">
<p>[email protected]</p>
<p>© 2024 Art Elokuva OY</p>
<p>Art Elokuva OY ei ole aito osakeyhtiö, eikä rekisteröity tavaramerkki Suomessa.</p>
<div id="hyperlinks">
<a href="cookies.html"><small>Evästelinjaus</small><small> - </small></a><a href="https://status.artelokuvaoy.com"><small>Status</small></a>
</div>
</div>
</footer>
</body>
</html>