-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvi.html
More file actions
112 lines (112 loc) · 6.32 KB
/
vi.html
File metadata and controls
112 lines (112 loc) · 6.32 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
<!DOCTYPE html>
<html lang="vi">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Máy tính ngày - Tính chênh lệch ngày dễ dàng</title>
<meta name="description" content="Một máy tính ngày đơn giản, đa ngôn ngữ cho máy tính để bàn và di động. Tính toán sự khác biệt giữa hai ngày một cách dễ dàng.">
<meta name="keywords" content="máy tính ngày, chênh lệch ngày, số ngày, cộng ngày vào ngày">
<link rel="stylesheet" href="style.css">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="shortcut icon" href="favicon.ico">
<!-- Android Chrome -->
<link rel="icon" type="image/png" sizes="192x192" href="android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="android-chrome-512x512.png">
<!-- iOS Safari -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-MZMZ6XS7');</script>
<!-- End Google Tag Manager -->
<!-- Google AdSense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7079688840799451"
crossorigin="anonymous"></script>
<!-- End Google AdSense -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MZMZ6XS7"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="container">
<div class="site-header">
<img src="logo.png" alt="Logo" class="logo">
<h1 id="main-title">Máy tính ngày - Tính chênh lệch ngày dễ dàng</h1>
<div class="lang-select-wrapper">
<select id="lang-select" onchange="if(this.value) location.href=this.value;">
<option value="index.html">🇺🇸 English</option>
<option value="zh.html">🇨🇳 中文</option>
<option value="es.html">🇪🇸 Español</option>
<option value="de.html">🇩🇪 Deutsch</option>
<option value="ja.html">🇯🇵 日本語</option>
<option value="fr.html">🇫🇷 Français</option>
<option value="pt.html">🇵🇹 Português</option>
<option value="ru.html">🇷🇺 Русский</option>
<option value="it.html">🇮🇹 Italiano</option>
<option value="nl.html">🇳🇱 Nederlands</option>
<option value="pl.html">🇵🇱 Polski</option>
<option value="tr.html">🇹🇷 Türkçe</option>
<option value="fa.html">🇮🇷 فارسی</option>
<option value="vi.html" selected>🇻🇳 Tiếng Việt</option>
<option value="id.html">🇮🇩 Bahasa Indonesia</option>
<option value="cs.html">🇨🇿 Čeština</option>
<option value="ko.html">🇰🇷 한국어</option>
<option value="uk.html">🇺🇦 Українська</option>
<option value="hu.html">🇭🇺 Magyar</option>
<option value="sv.html">🇸🇪 Svenska</option>
<option value="ro.html">🇷🇴 Română</option>
<option value="ar.html">🇸🇦 العربية</option>
</select>
</div>
</div>
<div class="card">
<h1 id="title">Tính số ngày giữa hai ngày</h1>
<div class="input-group">
<label for="start-date" id="label-start">Ngày bắt đầu</label>
<input type="date" id="start-date">
</div>
<div class="input-group">
<label for="end-date" id="label-end">Ngày kết thúc</label>
<input type="date" id="end-date">
</div>
<button id="calc-btn">Tính toán</button>
<div id="result" class="result"></div>
</div>
<div class="card">
<h1 id="title-calc-date">Tính ngày sau một số ngày nhất định kể từ một ngày cho trước</h1>
<div class="input-group">
<label for="base-date" id="label-base-date">Ngày cơ sở</label>
<input type="date" id="base-date">
</div>
<div class="input-group">
<label id="label-direction">Hướng</label>
<select id="direction">
<option value="after" id="option-after">Sau</option>
<option value="before" id="option-before">Trước</option>
</select>
</div>
<div class="input-group">
<label for="days" id="label-days">Ngày</label>
<input type="number" id="days" min="0" value="0">
</div>
<button id="calc-date-btn">Tính toán</button>
<div id="result-date" class="result"></div>
</div>
</div>
<footer class="site-footer">
<div class="footer-content">
<span class="footer-links"><a href="/donation.html" target="_blank" rel="noopener">Ủng hộ website</a></span>
<span>© 2025 Máy tính ngày. Thành lập ngày 21/07/2025.</span>
<span class="footer-links"><a href="sitemap.xml" target="_blank" rel="noopener">Sơ đồ website</a></span>
<span class="footer-links"><a href="https://github.com/oscarzhoud/DateCalculator/" target="_blank" rel="noopener">Dự án GitHub</a></span>
<span class="footer-mit">Trang web này tự hào sử dụng giấy phép MIT. Mã nguồn được cung cấp để tải về và sử dụng ngoại tuyến.</span>
</div>
</footer>
<script src="script-vi.js"></script>
</body>
</html>