aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-09-04 22:28:08 -0500
committerMark Powers <markppowers0@gmail.com>2020-09-04 22:28:08 -0500
commit3ad949e08e8e289d6af3b629ab62d686cbef7e48 (patch)
treed6855cf1333d8c9e9ec7078cef0842a2b13000d6 /index.html
Initial commit
Diffstat (limited to 'index.html')
-rw-r--r--index.html106
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