-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (85 loc) · 3.54 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Komphet Meesab | Technology Solutions Consultant</title>
<meta
name="description"
content="Discover Komphet, a proficient technology solution consultant specializing in software development, cloud computing, and digital transformation for businesses across various industries. Explore Komphet's expertise in devising innovative IT strategies, implementing robust software solutions, and delivering successful projects. Learn how Komphet leverages technology to drive business growth, enhance efficiency, and achieve strategic objectives."
/>
<meta
name="keywords"
content="komphet, meesab, komphet meesab, คมเพชร, มีทรัพย์, คมเพชร มีทรัพย์, komphet.me, technology consultant, software development, cloud computing, digital transformation, IT strategy, business solutions, innovation in technology, project implementation, tech advisor, technology expert"
/>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "Komphet",
"jobTitle": "Technology Solution Consultant",
"url": "https://www.yourwebsite.com/komphet",
"image": "https://www.yourwebsite.com/komphet.jpg",
"sameAs": [
"https://www.linkedin.com/in/komphet",
"https://github.com/komphet",
"https://www.facebook.com/komphet.me"
],
"memberOf": {
"@type": "Organization",
"name": "Gumon Technology Co., Ltd."
}
}
</script>
<link
rel="stylesheet"
type="text/css"
media="screen"
href="css/style.css?v=2"
/>
<link rel="icon" type="image/png" href="images/favicon.png" />
<script>
// Set the countdown duration in seconds
const countdownDuration = 5; // Change this value to set the countdown time
// Function to start the countdown
function startCountdown() {
let timeLeft = countdownDuration;
const countdownDisplay = document.getElementById("countdown");
const countdownTimer = setInterval(function () {
if (timeLeft <= 0) {
clearInterval(countdownTimer);
countdownDisplay.innerHTML = "Redirecting...";
// Redirect to the desired URL after countdown ends
window.location.href = "https://www.linkedin.com/in/komphet"; // Replace with your URL
} else {
countdownDisplay.innerHTML = `Redirecting in ${timeLeft} seconds`;
}
timeLeft--;
}, 1000); // Update every 1 second
}
// Start the countdown when the page loads
window.onload = startCountdown;
</script>
</head>
<body>
<div class="container">
<div class="loader-box">
<div class="loader">
<span></span>
<span></span>
<span></span>
<span></span>
</div>
<div class="profile-pic"></div>
</div>
<div class="greeting-message">
Hello there! 🌟 Welcome to my world of technology solutions. I'm Komphet
Meesab, your guide through the realm where innovation meets technology.
Fasten your seatbelt as we embark on a journey to discover how
cutting-edge solutions can transform businesses. Sit tight while we load
the possibilities!
<div id="countdown">Redirecting in 5 seconds</div>
</div>
</div>
</body>
</html>