-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdecl.html
More file actions
95 lines (87 loc) · 2.21 KB
/
decl.html
File metadata and controls
95 lines (87 loc) · 2.21 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
<!doctype html>
<html lang="ro">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Descarcă Documentul PDF</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #fbc02d;
}
.container {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
text-align: center;
max-width: 80%;
}
.pdf-wrapper {
width: 100%;
max-width: 600px;
aspect-ratio: 4 / 3;
margin: 20px auto;
}
.pdf-wrapper embed {
width: 100%;
height: 100%;
border: 1px solid #ddd;
border-radius: 8px;
}
.btn-download {
display: inline-block;
padding: 12px 24px;
background-color: #333;
color: white;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
transition: background 0.3s;
}
.btn-download:hover {
background-color: #555;
}
</style>
</head>
<body>
<div
class="d-flex justify-content-end p-3"
style="position: absolute; top: 0; right: 0; width: 100%"
>
<button
id="theme-toggle"
class="navbar-icon"
aria-label="Toggle dark mode"
>
<i class="bi-moon-fill" id="theme-icon"></i>
</button>
</div>
<div class="container">
<h2>Previzualizare Document</h2>
<div class="pdf-wrapper">
<embed src="Docs/D230-Tech-X-2025.pdf" type="application/pdf" />
</div>
<br />
<p>
„Dacă doriți să sprijiniți echipa noastră, vă invităm să descărcați, să
completați și să depuneți formularul la ANAF-ul de domiciliu.”
</p>
<br />
<br />
<a
href="docs\D230-Tech-X-2025.pdf"
download="D230-Tech-X-2025.pdf"
class="btn-download"
>
Descarcă PDF-ul
</a>
</div>
</body>
</html>