-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevB.html
79 lines (65 loc) · 2.58 KB
/
devB.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>devB</title>
<link rel="icon" type="image/x-icon" href="emb.jpeg">
<link rel="stylesheet" href="devB.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=Libre+Baskerville:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Mono:wght@100;200;300;400;500;600;700&family=Kumar+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Gajraj+One&family=Geostar+Fill&family=Revalia&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="devB.js"></script>
<style>
/* Styling the container to position the clock and images */
.clock-container {
display: flex;
align-items: center;
justify-content: center;
}
.clock {
margin: 0 20px;
}
.side-image {
width: 800px; /* Adjust size as needed */
height: auto;
z-index: 1;
margin-left: -5%;
}
/* Styling the signature image in the corner */
.corner-image {
position: fixed;
bottom: 10px;
right: 10px;
width: 100px; /* Adjust as needed */
height: auto;
opacity: 0.8; /* Slight transparency */
}
</style>
</head>
<body>
<div class="clock-container">
<img src="flowdev.png" class="side-image" alt="Side Image">
<div class="clock"></div>
</div>
<!-- Signature Image in Bottom Right Corner -->
<a href="index.html"><img src="sign.png" class="corner-image" alt="Signature"></a>
<script type="text/javascript">
var clock;
$(document).ready(function() {
var currentDate = new Date();
var futureDate = new Date("2025-02-11T00:00:00");
var diff = futureDate.getTime() / 1000 - currentDate.getTime() / 1000;
clock = $('.clock').FlipClock(diff, {
clockFace: 'DailyCounter',
countdown: true,
showSeconds: true
});
});
</script>
</body>
</html>