How to Use Borders from Material Websites
This tutorial shows you how to create decorative border and frames from material or graphic websites. You will learn how to combine the downloaded borders into one frame using befunky and then uploading the border to a file hosting website. The steps can be done in any device whether you're in phone or laptop!
You may skip file hosting part if you chose to upload the image in your dashboard directly. A file hosting website is an online cloud service where you can upload and store files. THey are helpful for website making because these websites let you direct link the images you upload, which you can use to display on your site. But if your dashboard has upload option for images, there's no need for the hosting site
Step A. Download Frames and Borders- Go to your material website of choice.
- Use any browser that has a language translation if needed.
- Find the border or frame you like and download all four corner images. You will need top and bottom left and right corners.




- Go to befunky and click Get Started
- Choose Create a Collage
- Make the collage transparent:
- At the bottom menu, click Customize.
- Select Background Color, then choose No color (icon looks like a box with a small triangle on the bottom).
- Click the teardrop icon with a strikethrough.
- Go back to Customize and click Spacing and slide it to 0%.
- Delete cells
- Option 1: You can drag and drop the border images if the befunky or material website allows it.
- Option 2: Upload the 4 corner images, you can left or right-click on each cell to add the images.
- Save the image as PNG. If possible, download it in high quality.












After that, close it.




After that, close it.












- Option 1: Use a file hosting website
- Upload your saved border image to any file hosting website. Common choices are Imgur (which I am always using), Dropbox, Imgbb, Catbox, etc.
- Wait until the upload is done, then Copy Link the image. Make sure there are no :blob: in links especially if you're using Imgur.
- Option 2: Hotlink in your dashboard
- Look for the website if it has Upload option.
- Right click on the image and copy its link.
- Open your code and paste the code below in the CSS
-
<style>
.border {
border: 7px solid;
border-image: url("border-url") 900 fill round;
}
</style> - Replace border-url with the direct link to your border image.
- You can play around the border width and fill round until it looks great.
- Paste the code below anywhere in your HTML to apply the border to your element.
<img src="/placeholder.jpg" class="border"> - Results
- Code:
<style>
.border {
border: 12px solid;
border-image: url("/tutorials/Codes/befunky_2025-7-6_19-53-20.png") 900 fill round;
}
</style>
<img src="/placeholder.jpg" class="border"> - Image:








