-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 3.74 KB
/
index.html
File metadata and controls
97 lines (91 loc) · 3.74 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Võ Thành Thuận BioLinks</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- facebook meta -->
<meta property="og:title" content="Võ Thành Thuận" />
<meta property="og:url" content="https://vothanhthuan.github.io/vtt/">
<meta property="og:description" content="Thông tin liên hệ với Võ Thành Thuận và sơ yêu lý lịch của Thuận.">
<meta property="og:image" content="https://vothanhthuan.github.io/vtt/img/avatar.jpg" />
<meta property="og:locale" content="vi_VN" />
<meta property="og:site_name" content="Bio Link Của Võ Thành Thuận" />
<!-- End: facebook meta -->
<!-- facebook twitter -->
<meta property="twitter:title" content="Võ Thành Thuận" />
<meta property="twitter:description" content="Thông tin liên hệ với Võ Thành Thuận và sơ yêu lý lịch của Thuận.">
<meta property="twitter:image" content="https://vothanhthuan.github.io/vtt/img/avatar.jpg" />
<meta name="twitter:card" content="summary_large_image">
<!-- End: facebook meta -->
</head>
<body>
<aside class="profile-card">
<header>
<!-- here’s the avatar -->
<a target="_blank" href="https://fb.com/vothuan1407">
<img src="img/avatar.jpg" class="hoverZoomLink">
</a>
<!-- the username -->
<h1>
Võ Thành Thuận
</h1>
<!-- and role or location -->
<h2>
@vothuan1407
</h2>
</header>
<!-- bit of a bio; who are you? -->
<div class="profile-bio">
<p>
Liên hệ tôi:
</p>
</div>
<!-- some social links to show off -->
<ul class="profile-social-links">
<li class="btn">
<a target="_blank" href="https://fb.com/vothuan1407">
<i class="fa-brands fa-facebook"></i> Facebook
</a>
</li>
<li class="btn">
<a target="_blank" href="tel:0966687993">
<i class="fa-solid fa-phone"></i> Số điện thoại
</a>
</li>
<li class="btn">
<a target="_blank" href="https://zalo.me/anome69">
<img src="img/zalo-logo-black-and-white.png" alt="zalo"> Zalo
</a>
</li>
<li class="btn">
<a target="_blank" href="https://vothanhthuan.github.io/vtt/about/vtt.html">
<i class="fa-solid fa-address-card"></i> Sơ yếu lý lịch
</a>
</li>
</ul>
<p><span id="time"></span></p>
</aside>
<script>
function showTime() {
var d = new Date();
var n = d.toLocaleString("vi-VN", {
day: "2-digit",
month: "2-digit",
year: "numeric",
hour:"2-digit",
minute:"2-digit",
second:"2-digit",
hour12: false
});
document.getElementById("time").innerHTML = n;
}
setInterval(showTime, 1000);
</script>
</body>
</html>