-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkspace.html
More file actions
41 lines (37 loc) · 1.41 KB
/
workspace.html
File metadata and controls
41 lines (37 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projectdoro</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Ms+Madi&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<!-- // HEADER / INTRO // -->
<header class="workspace">
<nav class="bg-dark">
<ul class="list-reset nav-list">
<li><a href="index.html">Home</a>/</li>
<li><a href="about.html">About</a>/</li>
<li><a href="projects.html">Projects</a>/</li>
<li><a href="#resume">Workspace</a></li>
</ul>
</nav>
</header>
<main>
<!-- // TIMER // -->
<section class="timerContent-wrap">
<div class="timer_bg-dark">
<h1 class="timerFormat">Timer: </h1>
<h1 class="clock" id="timer">25:00 </h1>
<button class="timerBtn" id="start">Start</button>
<button class="timerBtn" id="stop">Stop</button>
<button class="timerBtn" id="reset">Reset</button>
</div>
</section><!-- end of TIMER -->
<script src="timer_js/timer.js"></script>
</main>
</body>