How to Overlay Text on an Image in HTML and CSS

Learn how to overlay text on an image in HTML and CSS to create attention-grabbing images on your website.
by Josephine Loo ·

Contents

    As humans are highly visual creatures, using images on your website can help to capture your visitors’ attention. Studies show that almost 50% of our brain is involved in visual processing, which is one of the reasons why texts are added to images to create infographics to convey information more effectively.

    There are many scenarios where you can overlay text on an image on your website to enhance the visual presentation and experience. For example, adding headline or call-to-action text on website banners/sliders grabs the visitors’ attention and communicates the main message immediately as they arrived at the website. On e-commerce sites, overlaying product names, prices, and labels on product images helps users quickly identify and understand the attractive offerings.

    These scenarios illustrate how overlaying text on images can serve various purposes and you can do that with only HTML and CSS! In this tutorial, we are going to learn how to do it step-by-step. Let’s get started!

    Overlaying Text on an Image in HTML and CSS

    HTML

    First, create a new HTML file with the basic structure including the head and body sections.

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Image Overlay with Text</title> 
        </head>
        <body>
        </body>
    </html>
    

    In the body section, create a div with a class named “image-container” and add an image within it. Next, create another div with a class named “overlay-text” and add your text inside.

    <body>
        <div class="image-container">
            <img src="https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="image">
            <div class="overlay-text">Your text here</div>
        </div>
    </body>
    

    We know that in real-life scenarios, it’s unlikely for a web page to contain an image only. However, we’ll do this in this tutorial for the sake of simplicity. No matter if you’re overlaying the text on a banner, product image, or any other type of image on your website, it works similarly.

    When you open the HTML file in a browser, it should look like this:

    screenshot of the web page before CSS styling

    Next, we are going to style the page using CSS to overlay the text on the image. Create a CSS file named “style.css” and add a link tag in the head section of the HTML file to link these two files.

    <head>
        ...
        <link rel="stylesheet" href="styles.css">
    </head>
    

    This is the full code:

    <!DOCTYPE html>
    <html lang="en">
        <head>
            <meta charset="UTF-8">
            <meta name="viewport" content="width=device-width, initial-scale=1.0">
            <title>Image Overlay with Text</title>
            <link rel="stylesheet" href="styles.css">
        </head>
        <body>
            <div class="image-container">
                <img src="https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="image">
                <div class="overlay-text">Your text here</div>
            </div>
        </body>
    </html>
    

    CSS

    We will add a black background to the text and position it at the center of the image using CSS. In the “style.css” file, add the code below to style elements with the relative classes:

    .image-container {
      position: relative;
      display: inline-block;
    }
    
    .image-container img {
      display: block;
      width: 100%;
      height: auto;
    }
    
    .overlay-text {
      position: absolute;
      top: 50%; 
      left: 50%; 
      transform: translate(-50%, -50%); 
      background-color: #000000; 
      color: #fff; 
      padding: 10px 20px; 
      font-size: 20px; 
      text-align: center;
    

    You can adjust the properties of the .overlay-text class as needed to achieve the desired positioning, size, and appearance of the text. For example, you can change the value of font-size to adjust the text size, color to change the text color, and top or left to change the text’s position.

    After applying the styles, the text should now be overlaid on top of the image, like the screenshot below:

    Screenshot 2023-08-02 at 3.55.58 PM.png

    🐻 View the complete code and result on CodePen.

    Using Bannerbear API

    While using CSS to overlay text on an image is easy as it doesn’t require any additional libraries or dependencies, your creativity could be limited. As the design gets more complex, so does the code. If you want to place the text in other positions, you would also need to find the perfect position by trial and error using different values.

    Besides that, the overlaid text only stays on the web page. If you are overlaying text on the featured image of a blog post/article and want to use it as the Open Graph image (so that it appears on the preview when your share it on social media), it doesn’t do the job. This is what you’ll get—just the image itself:

    screenshot of the preview/Open Graph image on Twitter

    In this case, you can use an image generation service like Bannerbear to add the text to the image instead of overlaying it using CSS. Bannerbear generates custom images based on a design template in which you can add static and dynamic images, texts, shapes, etc. And you can add a unique URL in your HTML code to generate it automatically.

    Here’s how it works:

    First, you will need a design template like the one below:

    screenshot of the Bannerbear template editor

    The template editor has a drag-and-drop interface and a panel on the right for designing the images, texts, and shapes. It makes designing and positioning the text on the image so much easier compared to styling using CSS.

    Then, you can get a URL base to construct the unique URL for generating the image with the text on it automatically from the dashboard.

    screenshot of the Simple URL creation page

    Here’s an example of the unique URL:

    https://ondemand.bannerbear.com/simpleurl/vKJl40B6DjQkno2NDV/image/text_container/text/Your+text+here/image_container/image_url/https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80
    

    …and you can learn how to construct it from this tutorial.

    In the HTML code, replace the original image and the div containing the text with the unique URL.

    <body>
        <div class="image-container">
            <img src="https://ondemand.bannerbear.com/simpleurl/vKJl40B6DjQkno2NDV/image/text_container/text/Your+text+here/image_container/image_url/https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="image">
        </div>
    </body>
    

    You should get a similar result:

    screenshot of the web page after CSS styling

    Different from using CSS, the text will always be on the image. However, this method takes a longer time compared to CSS as you’re using an external API. So it depends on your project requirements to decide which one to use.

    If you’re going to try Bannerbear, you can duplicate the template below:

    Bannerbear Overlay Text on Image template

    🐻 Bear Tips: Change the text from "Your text here" to "hello" in the unique URL and open it in a new tab to see the magic happens!

    Comparisons Between CSS and Bannerbear

    If you’re not sure which one you should use, here’s a quick comparison between the two methods:

    CSS

    ✅ Pros

    • No external library/dependency: You don't need to use any third-party APIs or external services to achieve the result.
    • Performance: Overlaying text on images using only HTML and CSS typically results in faster loading times compared to relying on external APIs for image generation.

    ❌ Cons

    • Limited creativity: While you can produce many effects using CSS, you might be limited in terms of more complex visual effects or animations.
    • Design complexity: Depending on the complexity of your design, overlaying text on images using CSS can become cumbersome and may require more code and effort to achieve the desired results.

    Bannerbear

    ✅ Pros

    • Versatility: It offers a wide range of features and options for overlaying text, adding effects, and manipulating images. You can create more complex and visually appealing designs without extensive coding.
    • Drag-and-drop interface: The drag-and-drop template editor makes creating different designs much easier as compared to styling using CSS.

    ❌ Cons

    • External dependency: Relying on an external API means your application's functionality depends on the service’s availability and reliability.
    • Cost: As it’s an external API, you will need to pay to use the service. However, it can save you more time when the design is complex.

    Conclusion

    Other than the examples that are mentioned previously, you can also overlay text on an image for other scenarios like adding customer testimonials or reviews on images to add credibility and authenticity to the content, adding text on images to create interactive elements, adding a watermark on images to establish branding and copyright ownership, and more.

    These are just some of the ideas and you can unleash your creativity to use it in many more scenarios. Happy coding!

    About the authorJosephine Loo
    Josephine is an automation enthusiast. She loves automating stuff and helping people to increase productivity with automation.

    FFmpeg Video Editing Essentials: Trimming, Merging, Subtitling, and More!

    As an open-source tool, FFmpeg provides a wide array of functions for handling media files. Let's learn how to use FFmpeg to edit videos programmatically, including trimming, merging, adding subtitles, etc.

    How to Automatically Transcribe Audio Like a Pro using AI Tools and APIs

    In this article, we will guide you on how to transcribe audio, and list several tools for doing it automatically, such as Amazon Transcribe, Google Cloud Speech-to-Text, Whisper by OpenAI, Azure AI Speech, and AssemblyAI.

    What To Know About Zapier’s New Chatbots Feature

    Chatbots play a significant role in modern business communication. Thanks to AI and other technological developments, they are easier and cheaper than ever to add into your workflow—even if you can't code. Here's what to know about Zapier's new AI-powered Chatbots product.

    Automate & Scale
    Your Marketing

    Bannerbear helps you auto-generate social media visuals, banners and more with our API and nocode integrations

    How to Overlay Text on an Image in HTML and CSS
    How to Overlay Text on an Image in HTML and CSS