added link

This commit is contained in:
2026-03-19 11:13:49 -04:00
parent 2e5c209eb6
commit bc3ee44748
2 changed files with 15 additions and 1 deletions

View File

@@ -9,6 +9,7 @@
</head>
<body>
<h1>nicholassurmava.com</h1>
<a href="http://git.nicholassurmava.com">git.nicholassurmava.com</a>
<h2 class="typewriter">Stay Tuned...</h2>
</body>
</html>

View File

@@ -53,6 +53,19 @@ body {
background-color: black;
}
a {
color: crimson;
text-decoration: none;
}
a:hover {
color: teal;
}
a:active {
color: teal;
}
@keyframes blink {
0%, 100% { border-color: transparent; }
50% { border-color: currentColor; }
@@ -71,6 +84,6 @@ h2.typewriter {
width: 0;
display: inline-block;
animation:
typing 3.5s steps(14, end) infinite,
typing 4.5s steps(14, end) infinite,
blink 0.75s step-end infinite;
}