Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

193
Views
How do I make an image a href from this code?

So I have this web page, here's what it looks like:

https://prnt.sc/vY4OUXrUpnr9

now I want to make the center image a link. So when they click it they are redirected to a download. Here's the current code below in index.html but I don't know what to add/how to make the image a link. I think it's something to do with href. Please let me know, but need this done.

<style type="text/css">
        body{
            background-color: #484848;
        }
        div.container{
                text-align: center;
                position: absolute;
                top: 45%;
                left: 42.5%;
        }
        div.container img{
            width: 70px;
        }
        div.container p{
            color: #fff;
            font-size: 12px;
            font-family: sans-serif;
        }
    </style>
</head>
<body>
<div class="container">
    <img src="img/error.png">
    <p>A plugin is needed to display this content.</p>
</div>

<!-- page content end -->
</body>
</html>
about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

Change it to


<div class="container">

    <a href="http://example.com">

        <img src="img/error.png">
        <p>A plugin is needed to display this content.</p>

    </a>

</div>

about 4 years ago · Juan Pablo Isaza Report

0

<a href="https://www.google.de">
  <img src="https://img001.prntscr.com/file/img001/UAcHefR6SIeX5mTnHUmcdg.png" width="200" height="100">
  <p>A plugin is needed to display this content.</p>
</a>
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!