-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.html
More file actions
53 lines (52 loc) · 2.72 KB
/
Copy pathprogram.html
File metadata and controls
53 lines (52 loc) · 2.72 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
<!DOCTYPE html>
<html lang="ro">
<head>
<title>Program - Cinema 1000</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.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=Oswald:wght@200..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link rel="icon" href="images/icon.png" type="image/x-icon">
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1> <face id="titlu">CINEMA 1000</face> - locul unde trăiești 1000 de vieți în aceeași sală!</h1>
<nav>
<a href="index.html">ACASĂ</a>
<a href="program.html">PROGRAM</a>
<a href="noutati.html">NOUTĂȚI</a>
<a href="info.html">INFO ȘI TARIFE</a>
<a href="contact.html">CONTACT</a>
<div class="user-menu">
<input type="checkbox" id="user-menu-toggle" class="user-menu-toggle">
<label for="user-menu-toggle" class="user-menu-button">
<img src="home/images/person-icon.png" id="person-icon" alt="Meniu Utilizator">
</label>
<nav class="user-dropdown" role="navigation">
<a href="login.html">Autentificare</a>
<a href="cont.html">Contul meu</a>
<a href="delogare.html">Deconectare</a>
</nav>
</div>
</nav>
</header>
<main>
<div class="page-container">
<h1 class="page-title">PROGRAM</h1>
<div id="ajax-movies-container"></div>
</div>
</main>
<footer>
<p>© 2025 Cinema 1000. Toate drepturile rezervate.</p>
<p>
<a href="termeni-si-conditii.html">Termeni și condiții</a> |
<a href="politica-de-confidentialitate.html">Politica de confidențialitate</a>
</p>
</footer>
</body>
</html>