diff options
author | Louie Shprung <lshprung@scu.edu> | 2023-04-01 17:14:09 -0700 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2023-04-01 17:14:09 -0700 |
commit | 18774e2e797f64cf951b3ba1ea8051ea6ad525f4 (patch) | |
tree | d600833a04fb7209ac48f3078fbfab4afa0bf7cc /frontend/index.html |
First commit
Diffstat (limited to 'frontend/index.html')
-rw-r--r-- | frontend/index.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/frontend/index.html b/frontend/index.html new file mode 100644 index 0000000..4036645 --- /dev/null +++ b/frontend/index.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <title>Dash Docset Viewer</title> + <link href="./style.css" rel="stylesheet"/> + </head> + + <body> + <div id="header"> + <h1>Dash Docset Viewer</h1> + </div> + <span id="main-body"> + <table id="searchbar"> + <tr> + <td scope="col"> + <input type="search"></input> + </td> + </tr> + <tr> + <td scope="row"> + <button id="docset-example-parent" class="docset-parent"> + example.com + </button> + </td> + </tr> + </table> + <embed id="docset-page" type="text/html" src="./test.html"> + </span> + + <script src="./script.js"> + </script> + </body> +</html> |