Skip to content

Instantly share code, notes, and snippets.

@prateek3255
Created February 16, 2020 20:44
Show Gist options
  • Save prateek3255/9a39b13c3e9fde97507c87399bf8ad2d to your computer and use it in GitHub Desktop.
Save prateek3255/9a39b13c3e9fde97507c87399bf8ad2d to your computer and use it in GitHub Desktop.

Revisions

  1. prateek3255 created this gist Feb 16, 2020.
    21 changes: 21 additions & 0 deletions popup.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    <!DOCTYPE html>
    <html>
    <head>
    <link rel = "stylesheet"
    type = "text/css"
    href = "popup.css" />
    </head>
    <body>
    <div class="wrap">
    <h1>Replacely</h1>
    <form id="replacely-form">
    <input type="text" id="search" required class="text-box" placeholder="Search"/>
    <input type="text" id="replace" required class="text-box" placeholder="Replace"/>
    <button class="btn" type="submit">
    <span>Replace</span>
    </button>
    </form>
    </div>
    <script src="popup.js"></script>
    </body>
    </html>