diff options
Diffstat (limited to 'startpage/index.html')
-rw-r--r-- | startpage/index.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/startpage/index.html b/startpage/index.html new file mode 100644 index 00000000..1d0cd486 --- /dev/null +++ b/startpage/index.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html> +<head> + <link rel="stylesheet" href="styles.css" type="text/css"/> + <!--meta name="viewport" content="width=device-width, initial-scale=1.0"--> + <title>Welcome, Vidhu Kant!</title> +</head> +<body> + <div class="content"> + <h1 class="center" id="title"> + Welcome, Vidhu Kant! + </h1> + <span id="time-container"> + <h2 class="center" id="quote-container" id="subtitle"> + Time: <span id="datetime"></span> + </h2> + </span> + </div> + + + + <div id="bottom-nav-container"> + <span class="bottom-nav-item" id="nav-links"> + <a href="">MyAnimeList</a> + <a href="">Old Reddit</a> + <a href="">YouTube</a> + <a href="">Twitter</a> + <a href="">WhatsApp</a> + <a href="">MAL Profile</a> + <a href="">New Reddit</a> + <a href="">Nyaa</a> + <a href="">Mega</a> + <a href="">Amazon</a> + <a href="">Music</a> + <a href="">音楽</a> + <a href="">Amazon</a> + </span> + <span class="bottom-nav-item"> + <p><span id="datetime"></span></p> + </span> + </div> + +<script> + var dt = new Date(); + document.getElementById("datetime").innerHTML = (("0"+dt.getHours()).slice(-2)) +":"+ (("0"+dt.getMinutes()).slice(-2)); +</script> +</body> +</html> |