NANabila Abubakarinbeela303.hashnode.dev·Jul 14, 2025 · 2 min readUpdate on the Frontend Mentor ChallengeI successfully completed the Space Tourism Challenge on Frontend Mentor in 4 days even though I estimated it will take me a week. It was the first time I worked with a design file to create a website and I'm grateful to the Frontend Mentor team for t...00
NANabila Abubakarinbeela303.hashnode.dev·Nov 7, 2024 · 1 min readHow to remove the underline from a linkRemoving the underline from a link is very simple. HTML <a href="url">link text</a> CSS a{ text-decoration: none; } You can also add other properties. For example, color. a{ text-decoration: none; color: white; }00
NANabila Abubakarinbeela303.hashnode.dev·Nov 6, 2024 · 2 min readStyling a button with CSSThere are several ways to style a button with CSS, you can add an animation, shadows, curves and more, you just need to know the right code to use. HTML Firstly, we'll start with HTML, so our button can be displayed. <button type="button">Button 1</b...00
NANabila Abubakarinbeela303.hashnode.dev·Nov 6, 2023 · 1 min readIDs vs Classes in HTMLINTRODUCTION IDs and classes can be confusing especially to new developers and I have to admit when I first got into coding I didn't know which to use. I made this guide to help web developers struggling to grasp this. WHAT IS AN ID? An ID is a uniqu...00