diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-09-04 22:28:08 -0500 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-09-04 22:28:08 -0500 |
commit | 3ad949e08e8e289d6af3b629ab62d686cbef7e48 (patch) | |
tree | d6855cf1333d8c9e9ec7078cef0842a2b13000d6 /index.html |
Initial commit
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..70ae21e --- /dev/null +++ b/index.html @@ -0,0 +1,106 @@ +<!doctype html> +<html lang="en"> + +<head> + <meta charset="UTF-8"> + <link rel="stylesheet" href="styles.css"> + <title>New Tab</title> +</head> + +<body> + <h1></h1> + <span class="search"><input id="searchInput" placeholder="Search..."><button id="searchBtn">Go</button></span> + <div class="items"> + <a class="item" href="https://budget.marks.kitchen"> + <span class="icon">đ°</span>BUDGET + </a> + <a class="item" id="calendar"> + <span class="icon">đ
</span>CALENDAR + </a> + <a class="item" id="filefeed"> + <span class="icon">đī¸</span>FILE FEED + </a> + <a class="item" id="files"> + <span class="icon">đ</span>FILES + </a> + <a class="item" href="https://fosstodon.org"> + <span class="icon">#ī¸âŖ</span>FOSSTODON + </a> + <a class="item" id="gitea"> + <span class="icon">đž</span>GITEA + </a> + <a class="item" id="rss"> + <span class="icon">đ°</span>RSS + </a> + <a class="item" id="rssvideo"> + <span class="icon">đē</span>RSS VIDEO + </a> + <a class="item" href="https://news.ycombinator.com/"> + <span class="icon">đąâđģ</span>HN + </a> + <a class="item" id="wiki"> + <span class="icon">đ</span>WIKI + </a> + <a class="item" id="wunderground"> + <span class="icon">đŠī¸</span>WUNDERGROUND + </a> + <a class="item" href="https://www.youtube.com/feed/subscriptions"> + <span class="icon">đŊī¸</span>YOUTUBE + </a> + </div> + <table class="weather"> + <tr> + <td rowspan="2"> + <image id="weatherIcon"></image> + </td> + <td>Temp</td> + <td>Humid</td> + <td>Feels</td> + <td>UVI</td> + </tr> + <tr> + <td id="weatherTemp"></td> + <td id="weatherHumid"></td> + <td id="weatherFeels"></td> + <td id="weatherUVI"></td> + </tr> + </table> + <table class="forecast"> + <tr> + <th id="day1">Tomorrow</th> + <th id="day2">The Next Day</th> + <th id="day3">The Day After That</th> + </tr> + <tr> + <image id="day1icon"></image> + <image id="day2icon"></image> + <image id="day3icon"></image> + </tr> + <tr> + <td id="day1high"></td> + <td id="day2high"></td> + <td id="day3high"></td> + </tr> + <tr> + <td id="day1low"></td> + <td id="day2low"></td> + <td id="day3low"></td> + </tr> + <tr> + <td id="day1pop"></td> + <td id="day2pop"></td> + <td id="day3pop"></td> + </tr> + <tr> + <td id="day1desc"></td> + <td id="day2desc"></td> + <td id="day3desc"></td> + </tr> + </table> + <script src="config.js"></script> + <script src="link-manager.js"></script> + <script src="weather-manager.js"></script> + <script src="search-manager.js"></script> +</body> + +</html>
\ No newline at end of file |