Skip to content
Permalink
ee6a06b16b
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
46 lines (46 sloc) 2.08 KB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="img/favicon.svg" type="image/x-icon">
<title>New tab</title>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=YT+Sans:300,400,500,600,700,800,900&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
</head>
<body style="transition: all 1s">
<div class="container">
<article>
<div class="tab-row">
<a class="tab" id="tod">Time of Day</a>
<a class="tab" id="notes">Notes</a>
</div>
<section id="tod-section" class="hidden">
<h1>Good <span id="current-time">morning</span>, <span contenteditable id="name">Your Name Here</span>!</h1>
<h3>It is currently <span id="time"></span>.</h3>
</section >
<!-- <section class="hidden" id="productivity">
<div class="">
<a class="tab active" id="twenty-five">25:5</a>
<a class="tab" id="fifty-two">52:17</a>
</div>
<h1 id="timer">00:00</h1>
<button id="start">Start</button>
<button id="cancel" class="hidden">Cancel</button>
</section> -->
<section id="notes-section" class="hidden">
<textarea name="notepad" id="notepad" cols="30" rows="10" placeholder="Type anything here, it'll stay right where you leave it!"></textarea>
</section>
</article>
</div>
<footer>
<a href="" id="unsplash-author">
<img src="img/image.svg" alt="" srcset="">
</a>
</footer>
<script src="https://requirejs.org/docs/release/2.3.5/minified/require.js"></script>
<script type="module" src="js/main.js"></script>
</body>
</html>