diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-14 16:03:07 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-12-14 16:03:07 +0530 |
commit | 1ec6252e738cb6082c7cf13566fc8f5a6247d2b1 (patch) | |
tree | 5cefa9bc536b25b9399a23e26014a1f72c73666d /startpage/index.html | |
parent | 03c40f935cb96e3ac98b893162da8ab4f134f83e (diff) |
added a startpage for web browser
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> |