Build a Custom Slug Generator using HTML, CSS, and JavaScript

Faraz

By Faraz -

Learn how to create a custom slug generator with HTML, CSS, and JavaScript. Our step-by-step guide will show you how to build and test your own slug generator.


build a custom slug generator using html, css, and javascript.jpg

Table of Contents

  1. Project Introduction
  2. HTML Code
  3. CSS Code
  4. JavaScript Code
  5. Preview
  6. Conclusion

A slug generator is a tool that creates a simplified version of a URL string, often for the purposes of making it more human-readable and SEO-friendly. A slug is the part of a URL that identifies a specific page or post on a website. It is typically located after the domain name and is used to identify the content of the page or post. For example, in the URL "www.example.com/this-is-a-slug", "this-is-a-slug" would be the slug.

Slug generators can be used to automatically create slugs from the title of a page or post, or they can be used to manually customize the slug to a specific format. Slug generators can be implemented in a variety of programming languages, such as HTML, CSS, and JavaScript.

A Slug Generator is a tool that automatically generates slugs for webpages or blog posts. This is useful for several reasons:

  1. Slugs are important for SEO (search engine optimization), as they help search engines understand the content of a webpage.
  2. Slugs can make URLs more user-friendly, as they can be customized to be shorter and easier to remember.
  3. Slugs can prevent naming conflicts, as they ensure that every page or post has a unique identifier.

Benefits of using a Custom Slug Generator

While there are many online tools that can generate slugs, building your own Custom Slug Generator has several benefits:

  • Personalization: A Custom Slug Generator allows you to create slugs that reflect your brand or website's personality.
  • Aesthetics: A Custom Slug Generator allows you to create slugs that are visually appealing and easy to remember.
  • Flexibility: A Custom Slug Generator allows you to create slugs that meet your specific needs and requirements.
  • Control: A Custom Slug Generator allows you to have complete control over the slug creation process.

You can use frontendsolution's text to slug generator tool that allows you to use a slug generator tool online.

Let's start making an amazing responsive slug generator tool Using HTML, CSS, and JavaScript step by step.

Join My Telegram Channel to Download the Project: Click Here

Prerequisites:

Before starting this tutorial, you should have a basic understanding of HTML, and CSS. Additionally, you will need a code editor such as Visual Studio Code or Sublime Text to write and save your code.

Source Code

Step 1 (HTML Code):

To get started, we will first need to create a basic HTML file. In this file, we will include creating a form element to input the title of the page or post, and a button to trigger the slug generation. You may also want to include a placeholder for the generated slug to be displayed.

After creating the files just paste the following codes into your file. Remember that you must save a file with the .html extension.

Step 2 (CSS Code):

Next, we will create our CSS file. In this file, we will use some basic CSS rules. We will also add some padding and margin properties to ensure that everything looks correct.

This can help to make the page more visually appealing and easier to use. Create a CSS file with the name of styles.css and paste the given codes into your CSS file. Remember that you must create a file with the .css extension.

html {
  --clr-white: #ffffff;
  --clr-primary: hsl(259deg 64% 59%);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  font-size: 18px;
  background-color: #fafafa;
  color: #333333;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

body > * + * {
  margin-top: 1em;
}

header, main {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#generator {
  --paddingX: calc(.75em - 1px);
  --paddingY: calc(.5em - 1px);
  --borderR: 0.375em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

input[type="text"] {
  font-size: 1em;
  background-color: var(--clr-white);
  border: 1px solid #dbdbdb;
  border-radius: var(--borderR);
  padding: var(--paddingY) var(--paddingX);
  box-shadow: inset 0 0.0625em 0.125em rgb(10 10 10 / 5%);
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 0.125em rgb(72 95 199 / 25%);
}

button {
  text-align: center;
  font: inherit;
  color: var(--color);
  background: var(--bgColor);
  border: 1px solid var(--borderColor);
  border-radius: var(--borderR);
  padding: var(--paddingY) var(--paddingX);
  margin: 0;
  display: block;
  cursor: pointer;
}

button:focus {
  outline-offset: 2px;
}

.primary-button {
  --color: var(--clr-white);
  --bgColor: var(--clr-primary);
  --borderColor: var(--clr-primary);
}

.default-button {
  --color: hsl(217deg 23% 27%);
  --bgColor: var(--clr-white);
  --borderColor: hsl(216deg 16% 84%);
}

#result {
  visibility: hidden;
  --paddingX: 6px;
  --paddingY: 2px;
  --borderR: 0.375em;
  background-color: hsl(220deg 17% 93%);
  color: #da1039;
  padding: calc(var(--paddingY) * 5) calc(var(--paddingX) * 2);
  margin-top: 1.5em;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

#result input {
  font-size: 1em;
  background: transparent;
  border: none;
  height: auto;
  resize: none;
  display: block;
  flex: 1;
} 

Step 3 (JavaScript Code):

Finally, we need to create a function that will take the inputted title and generate a slug from it. This function will likely involve manipulating the inputted text to remove spaces and special characters, and then formatting it in a way that is suitable for use as a URL slug.

Bind the slug generation function to the form submission event, so that it is triggered when the user clicks the button to generate the slug.

Test your slug generator to make sure it is working correctly. This may involve inputting different titles and verifying that the generated slugs are correct.

Create a JavaScript file with the name of script.js and paste the given codes into your JavaScript file. Remember, you’ve to create a file with .js extension.

(Optional) If you want you can add additional features to your slug generator, such as the ability to edit the generated slug manually or to preview the full URL with the slug included.

const generator = document.getElementById("generator");
const result = document.querySelector("#result input");
const copy = document.getElementById("copy");
const showDiv = document.getElementById("result");

generator.addEventListener("submit", function (e) {
  e.preventDefault();

  const title = e.target.title.value;
  const slug = title.toLowerCase().split(" ").join("-").replace(/[:.,?!]/gi, "");

  if (result) {
    result.value = slug;
    e.target.title.value = "";
    showDiv.style.visibility = "visible";
  } else {
    console.error("Sth wrong...");
  }
});

function copy2clipboard() {
  let custom_code = result.select();
    document.execCommand('copy'); 
}

copy.addEventListener("click", copy2clipboard);

Final Output:

build a custom slug generator using html, css, and javascript.gif

Conclusion:

In this tutorial, we have shown you how to build a Custom Slug Generator using HTML, CSS, and JavaScript. We started by discussing what a Slug Generator is and the benefits of using a Custom Slug Generator. Then, we provided a step-by-step guide to building a Custom Slug Generator, including setting up the HTML structure, designing the CSS layout, writing the JavaScript code, and testing and optimizing the generator.

Along the way, we also provided best practices for creating a Slug Generator, such as using user-friendly and descriptive slugs, handling edge cases, and ensuring the generator is accessible and responsive.

By building your own Custom Slug Generator, you can create slugs that are personalized, aesthetically pleasing, and meet your specific needs and requirements. We hope that this tutorial has been helpful and that you are now equipped to create your own Custom Slug Generator. Happy coding!

That’s a wrap!

I hope you enjoyed this post. Now, with these examples, you can create your own amazing page.

Did you like it? Let me know in the comments below 🔥 and you can support me by buying me a coffee.

And don’t forget to sign up to our email newsletter so you can get useful content like this sent right to your inbox!

Thanks!
Faraz 😊

End of the article

Subscribe to my Newsletter

Get the latest posts delivered right to your inbox


Latest Post