35
How to add "Made By" at the bottom corner of the website?
hey 👋 , I still haven't figured out what the title should be. Comment if you find a well-suited title after reading this article. You're awesome :P
Last week, I look at the Basecamp website to know how to Change the underline color Tricks in CSS (Pssst, read that article, Pretty cool stuff 🔥).
This week, when I look at the Gumroad website, specifically all of the product pages, I notice new interesting HTML stuff :P.
![](https://res.cloudinary.com/practicaldev/image/fetch/s--juwbgmSY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625402479146/tJ5N_S-O1.png)
Check this example product page.
Notice the Powered by Gumroad floating stuff(I don't know what to call it 😂). That is cool actually. I have already seen this trend on many websites nowadays.
Free marketing. It makes your brand stands out. 🦄
Other examples;
✅ Webflow
![](https://res.cloudinary.com/practicaldev/image/fetch/s--gKYPz_Rj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625403848848/UVXPSnI52.png)
✅ Stripe
![](https://res.cloudinary.com/practicaldev/image/fetch/s--PXbosHo6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625405986451/4es9B8a5dQ.png)
✅ mmm.page
![](https://res.cloudinary.com/practicaldev/image/fetch/s--XVo85UW8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625524700710/T-m2zSc4O.gif)
If you have a side project, you can show: "Made by asyraf" too!!
Examples:
✅ MakerReads
![](https://res.cloudinary.com/practicaldev/image/fetch/s--qkGGJmDT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625404204004/JblUw5dAx.png)
✅ No More Google
![](https://res.cloudinary.com/practicaldev/image/fetch/s--Rowmw0Xh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625406724221/dLREmmHRB.png)
✅ Begreate.me
![](https://res.cloudinary.com/practicaldev/image/fetch/s--2oBV-l9F--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625544977350/GACnz6uuw.png)
✅ chart2site.com
![](https://res.cloudinary.com/practicaldev/image/fetch/s--lGCyctmf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625545054516/-0DOGxSKH.png)
Pretty cool right 🌈. So, how we gonna make it ??
I have two ways for you;
Honestly, this is easy. You can just open your DevTool and inspect the element. Most of the view is written in HTML & CSS. Pretty easy right. Don't bother to think of React or Vue or Svelte or other stuff.
![](https://res.cloudinary.com/practicaldev/image/fetch/s--A7BXV2L---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://cdn.hashnode.com/res/hashnode/image/upload/v1625525183686/I9QTyVDfW.png)
Go and try to inspect the element. Use the utilities that Google has been given to you(that's why I love using vanilla things).
If you already forgot how HTML & CSS is, I'm here to help you. Keep reading :P
There are two variations I came across here. One is like a Gumroad, and the second is like Pieter Levels.
Gumroad
Pieter Levels
The main thing here is:
-
a
tag: to wrap the floating stuff, the text & the logo -
left
orright
: either you want to put it on the left/right/bottom -
position
: set it tofixed
as you want it to be sticky when you scroll the page and stick it at its position. - logo stuff
- decoration stuff;
border-radius
,text-decoration
,box-shadow
......
That is all my friends. Don't forget to mention me on Twitter if you put it on your website. Happy to see the variation of your guys' creativity 🌈.
The End
Resources:
no resources as I just use DevTool 😆
35