xyz
xyz

Reputation: 9

How to open a local file in html?

Hi i started learning html a say or two ago and i was just messing around with some features when i thought of making a website which stored my school stuff in a arranged manner then i wanted to make a button that opens a local file but i just couldn't make it happen but i tried searching it on web but nothing worked for me here is the code

 <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>E</title>
        <link rel="stylesheet" href="style.css">
        </head>
    <body>
        <style>body{background-image: url(x.jpg);
        background-size: cover;}  
        </style> <div id="red">
        <button><a src="C:\Users\laksh\Mywebsite\jkoj.html">jkoj</a></button>
       </div>
    </body>
    </html>

Upvotes: 0

Views: 1211

Answers (1)

Mehul Shekhada
Mehul Shekhada

Reputation: 11

don't use src attribute in a tag, use href in place of src

Upvotes: 1

Related Questions