madebydanny.uk written in html, css, and a lot of JavaScript I don't understand madebydanny.uk
html css javascript
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tiny update

+4 -18
+4 -18
index.html
··· 66 66 <h2>About</h2> 67 67 <p class="about-paragraph"> 68 68 Welcome to <code class="code-snippet">danielmorrisey.com</code>, I use this site as a place to share & store my 69 - <a href="/projects/index.html" class="about-link">projects</a> & <a href="/textbites/index.html" class="about-link">text bites</a>. 69 + <a href="/projects/index.html" class="about-link">projects</a>. 70 70 </p> 71 71 <p class="about-paragraph"> 72 72 I also use <code class="code-snippet">danielmorrisey.com</code> to host some backend services and as a content delivery network (CDN) for my other sites & projects. 73 73 <br><br> 74 - I also own the domain <code class="code-snippet">madebydanny.uk</code> I use it for more "professional" projects & sites like <a href="https://news.madebydanny.uk" target="_blank" rel="noopener noreferrer" class="about-link">MBD News</a>. 75 - </p> 76 - <p class="about-paragraph"> 77 - <br><br> 78 - I also own the domain <code class="code-snippet">madebydanny.uk</code> I use it for more "professional" projects & sites like <a href="https://news.madebydanny.uk" target="_blank" rel="noopener noreferrer" class="about-link">MBD News</a>. 79 74 </p> 80 75 </section> 81 76 ··· 85 80 <section> 86 81 <h2>Where to find me & my work</h2> 87 82 <div class="links-container"> 88 - <!-- Projects --> 89 - <a href="/projects/index.html" class="link-item"> 90 - <i class="fa-solid fa-folder-open link-icon"></i> 91 - <span>My Projects</span> 92 - </a> 93 83 <!-- Text Bites --> 94 84 <a href="/textbites/index.html" class="link-item"> 95 85 <i class="fa-solid fa-book link-icon"></i> ··· 129 119 <a href="https://github.com/therealfuntimeswithdanny" target="_blank" rel="noopener noreferrer" class="link-item"> 130 120 <i class="fa-brands fa-github link-icon"></i> 131 121 <span>GitHub</span> 132 - </a> 133 - <!-- MBD News --> 134 - <a href="https://news.madebydanny.uk/" target="_blank" rel="noopener noreferrer" class="link-item"> 135 - <i class="fa-solid fa-newspaper link-icon"></i> 136 - <span>MBD News</span> 137 122 </a> 138 123 <!-- Image Scope --> 139 124 <a href="https://imagescope.madebydanny.uk/" target="_blank" rel="noopener noreferrer" class="link-item"> ··· 170 155 document.getElementById('currentYear').textContent = new Date().getFullYear(); 171 156 172 157 // Typing Effect for Bio 173 - const bioText = "Writer @ MBD News & HTML, CSS, Javascript & Python developer"; 158 + const bioText = "Writer @ Code and Chaos on Medium & Frontend Developer"; 174 159 const bioElement = document.getElementById('bio-text'); 175 160 const cursor = document.querySelector('.cursor'); 176 161 let i = 0; 177 - let typingSpeed = 50; 162 + let typingSpeed = 50; // Speed of typing in milliseconds 178 163 179 164 function typeWriter() { 180 165 if (i < bioText.length) { ··· 185 170 cursor.style.animation = 'none'; 186 171 } 187 172 } 173 + 188 174 189 175 // Start the typing effect when the page loads 190 176 window.onload = function() {