-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (96 loc) · 1.7 KB
/
index.html
File metadata and controls
100 lines (96 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<title>Tyler Johnston</title>
<style>
body {
background-color: #000080;
color: #00FF00;
font-family: "Comic Sans MS", "Courier New", monospace;
text-align: center;
}
h1 {
color: #FF00FF;
text-shadow: 2px 2px #FFFF00;
font-size: 48px;
}
a {
color: #00FFFF;
}
a:visited {
color: #FF00FF;
}
a:hover {
color: #FFFF00;
background-color: #FF0000;
}
table {
border: 3px solid #FF00FF;
margin: 20px auto;
background-color: #000000;
}
td {
border: 2px solid #00FFFF;
padding: 20px;
vertical-align: top;
}
pre {
color: #FFFF00;
font-size: 10px;
text-align: left;
}
.blink {
animation: blink 1s steps(1) infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
marquee {
color: #FF0000;
font-size: 24px;
}
hr {
border: 2px dashed #FF00FF;
}
ul {
list-style-type: none;
text-align: left;
display: inline-block;
padding-left: 0;
margin: 0;
}
li {
margin: 5px 0;
}
</style>
</head>
<body>
<h1>~ Tyler Johnston ~</h1>
<hr>
<table>
<tr>
<td>
<h2>🔗 My Links 🔗</h2>
<ul>
<li><a href="https://github.com/tylerjohnst" target="_blank">🐙 GitHub</a></li>
<li><a href="https://www.linkedin.com/in/tylerjohnston" target="_blank">📋 LinkedIn</a></li>
</ul>
</td>
<td>
<pre>
You have a small bug in your code
\ /
oVo
\___XXX___/
__XXXXX__
/__XXXXX__\
/ XXX \
V
</pre>
</td>
</tr>
</table>
<hr>
<p>© 1999 Tyler Johnston. All rights reserved.</p>
</body>
</html>