-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (94 loc) · 5.69 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
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<title>Wedding invite</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.11/typed.min.js"></script>
<style type="text/css">
pre {
font-family: 'Courier New', Courier, monospace;
font-size: 1.5rem;
line-height: 1.2;
text-align: center;
padding: 50px 0;
margin: 0;
}
</style>
</head>
<body style="background-color: black; color: white;">
<pre id="ascii-art"></pre>
<script>
const asciiArt = String.raw`
_________________________________________________________________________________
/ \
| We are excited to invite you |
| to the ultimate merge of two code repositories: |
| Nikita and Piyush |
| { Like two peas in a pod, or rather, two threads in a process } |
| |
| _________________________________________________________________________ |
| | \ |
| | *************************** DAY 1 ***************************** | |
| | | |
| | Date: May 3, 2023 | |
| | Time: 4:00 PM onwards | |
| | Venue: 18.5268348984126, | |
| | 73.74657605545909 | |
| | Event: from Haladi import * | |
| | from Sangeet import * | |
| | | |
| | Agenda: We know that testing is an integral part of any project. | |
| | So, come join us for an evening of fun, food, | |
| | and some rigorous testing of our dance moves. | |
| | | |
| **************************************************************************** |
| # # |
| # "You can't debug love, but you can compile it with joy" # |
| # # |
| **************************************************************************** |
| ___________________________________________________________________________ |
| | \ |
| | *************************** DAY 2 ***************************** | |
| | | |
| **************************************************************************** |
| # # |
| # "Marriage is like debugging: # |
| # you spend most of the time finding and fixing the bugs" # |
| # # |
| **************************************************************************** |
| | | |
| | Date: May 4, 2023 | |
| | Time: 08:00 AM onwards | |
| | Venue: 18.5268348984126, | |
| | 73.74657605545909 | |
| | Event: from life_new_chapter import * | |
| | | |
| | Dress Code: Any dress that makes you look your best, | |
| | but please put on atleast one complete outfit :D | |
| | | |
| | RSVP: Join our event and add some 'def' to our 'class' :P | |
| | And if you're not able to make it, | |
| | please raise an 'exception' as soon as possible. | |
| | We don't want to encounter any 'runtime errors'! | |
| | | |
| |_________________________________________________________________________/ |
| |
| P.S: With love as our guiding principle and your abundant support we are |
| confident our merge will be conflict-free and deployment will be successful! |
| |
\__________________________________________________________________________________/
\_______/
( o o )
\ ~~~ /
|---|
___/ \___
`;
const options = {
strings: [asciiArt],
typeSpeed: 1,
cursorChar: '',
contentType: 'html'
};
const typed = new Typed('#ascii-art', options);
</script>
</body>
</html>