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.

added text bites

+72 -3
+4 -3
index.html
··· 51 51 follow me on 52 52 <a href="/leaving.html?link=https://mastodon.social/@danielmorrisey" class="text-blue-600 transition-colors hover:text-blue-800">Mastodon</a> 53 53 & 54 - <a href="/leaving.html?link=https://bsky.app/profile/danielmorrisey.com" class="text-blue-600 transition-colors hover:text-blue-800">Bluesky</a> 55 - or check out 56 - <a href="/leaving.html?link=https://madebydanny.uk/" class="text-blue-600 transition-colors hover:text-blue-800">MBD News</a>, a News website that I own for all things <i>#Tech</i>. 54 + <a href="/leaving.html?link=https://bsky.app/profile/danielmorrisey.com" class="text-blue-600 transition-colors hover:text-blue-800">Bluesky</a>, 55 + check out 56 + <a href="/leaving.html?link=https://madebydanny.uk/" class="text-blue-600 transition-colors hover:text-blue-800">MBD News</a>, a News website that I own for all things <i><a href="https://mastodon.social/tags/tech" class="text-blue-600 transition-colors hover:text-blue-800">#Tech</a></i> 57 + or read my <a href="/textbites/index.html" class="text-blue-600 transition-colors hover:text-blue-800"> Text Bites</a>. 57 58 </p> 58 59 </div> 59 60 <div class="w-9/10 max-w-md mx-auto">
+68
textbites/index.html
··· 1 + <!DOCTYPE html> 2 + <html> 3 + <head> 4 + <meta charSet="utf-8"/> 5 + <meta name="viewport" content="width=device-width, initial-scale=1.0"/> 6 + <title>Text Bites - Daniel Morrisey</title> 7 + 8 + <meta name="description" content="From news to things you don't care about read all of Daniel Morriey's Text Bites"/> 9 + <meta name="keywords" content="Danile Morrisey, Danny Morrisey, MBD, Made by Danny, Made by Danny UK"/> 10 + <meta name="author" content="Daniel Morrisey"/> 11 + 12 + <meta property="og:type" content="website"/> 13 + <meta property="og:url" content="https://danielmorrisey.com/"/> 14 + <meta property="og:title" content="Text Botes - Daniel Morrisey"/> 15 + <meta property="og:description" content="From news to things you don't care about read all of Daniel Morriey's Text Bites"/> 16 + <meta property="og:image" content="/media/banner.jpg"/> 17 + 18 + <link rel="me" href="https://mastodon.social/@danielmorrisey"/> 19 + <link rel="icon" type="image/x-icon" href="/media/icon.jpg"> 20 + <script src="https://kit.fontawesome.com/0ca27f8db1.js" crossorigin="anonymous"></script> 21 + <script src="https://cdn.tailwindcss.com"></script> 22 + 23 + <link rel="preload" href="/_next/static/media/97a52bce187043ec-s.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/> 24 + <link rel="preload" href="/_next/static/media/e4af272ccee01ff0-s.p.woff2" as="font" type="font/woff2" crossorigin="anonymous" data-next-font="size-adjust"/> 25 + </head> 26 + <body> 27 + <div id="__next"> 28 + <div> 29 + <header class="flex flex-col items-center py-12 md:py-16"> 30 + <div class="mb-8"> 31 + <a href="/index.html" class="flex flex-col items-center"> 32 + <img src="/media/icon.jpg" alt="Profile Picture" class="w-16 h-16 mb-2 rounded-full"/> 33 + <h1 class="text-3xl font-bold">Daniel Morrisey</h1> 34 + </a> 35 + </div> 36 + </header> 37 + <div class="w-9/10 max-w-md mx-auto"> 38 + <!-- Search Bar --> 39 + <div class="mb-5"> 40 + <input type="text" id="projectSearch" placeholder="Search Text Bites..." class="w-full px-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"> 41 + </div> 42 + 43 + <!-- Main Projects Heading --> 44 + <h3 class="mb-2 mt-5 text-xl font-medium first:mt-0">Text Bites</h3> 45 + 46 + <!-- Projects List Container --> 47 + <div id="projectsList"> 48 + <!-- card 1 --> 49 + <div id="mbdio" class="project-card mb-4 p-4 border rounded-lg shadow-sm bg-white"> 50 + <h4 class="mb-2 text-xl font-small project-title-text">MBD is working on MBDIO</h4> 51 + <code class="rounded-lg border bg-gray-50 px-1 py-0.5 text-sm">#Development #MBDIO</code></p> 52 + <p class="project-description mt-2 text-gray-700"> 53 + MBD is working on a new tool called MBDIO, it's a simple, easy & fast link shortener that will allow you to shorten links and share them. 54 + </p> 55 + <a href="#" class="text-blue-600 transition-colors hover:text-blue-800"><!-- Read More --> </a> <a href="#" class="text-blue-600 transition-colors hover:text-blue-800"> <!-- Share Button --> </a> 56 + </div> 57 + </div> 58 + </div> 59 + <div class="w-9/10 max-w-md mx-auto"> 60 + <br><br> 61 + <p class="text-center text-gray-500">&copy; 2024-<span id="currentYear"></span> <a href="/leaving.html?link=https://madebydanny.uk" class="text-blue-600 transition-colors hover:text-blue-800">Made by Danny UK</a> <i>by Daniel Morrisey</i></p> 62 + </div> 63 + </div> 64 + </div> 65 + <script src="/script/main.js"></script> 66 + <script src="/script/search.js"></script> 67 + </body> 68 + </html>