-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·72 lines (70 loc) · 2.71 KB
/
index.html
File metadata and controls
executable file
·72 lines (70 loc) · 2.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/main.css">
<title>Frontend Mentor | Clock App</title>
</head>
<body>
<h1 class="sr-only">Clock app</h1>
<div class="background"></div>
<main class="top-widgets">
<article class="quote-wrapper">
<div class="quote-wrapper__random">
<q id="quote"></q>
<h2 class="author"></h2>
</div>
<button id="refresh">
<svg width="18" height="18" xmlns="http://www.w3.org/2000/svg">
<path
d="M7.188 10.667a.208.208 0 01.147.355l-2.344 2.206a5.826 5.826 0 009.578-2.488l2.387.746A8.322 8.322 0 013.17 14.94l-2.149 2.022a.208.208 0 01-.355-.148v-6.148h6.52zm7.617-7.63L16.978.958a.208.208 0 01.355.146v6.23h-6.498a.208.208 0 01-.147-.356L13 4.765A5.825 5.825 0 003.43 7.26l-2.386-.746a8.32 8.32 0 0113.76-3.477z"
fill-rule="nonzero" /></svg><span class="sr-only">Click the refresh icon</span></button>
</article>
<article class="currently">
<div class="widgets-wrapper">
<header>
<img class="icon">
<h2 class="currently__greeting"></h2><span>, it's currently</span>
</header>
<section class="currently__time">
<div class="time-wrapper">
<h2 class="time-now"></h2>
<div class="standard-time">
<p class="period"></p>
<p class="region"></p>
</div>
</div>
<h3 class="currently__location">in</h3>
</section>
</div>
<button class="expand">More<img src="./assets/desktop/icon-arrow-up.svg" alt="arrow icon" aria-hidden="true" class="arrow">
</button>
</article>
</main>
<article class="details">
<ul class="details__contents">
<li class="details__region info">
<h4>Current timezone</h4>
<p id="timezone"></p>
</li>
<li class="details__day info">
<h4>Day of the year</h4>
<p id="year-day"></p>
</li>
<li class="details__week-day info">
<h4>Day of the week</h4>
<p id="week-day"></p>
</li>
<li class="details__week-number info">
<h4>Week number</h4>
<p id="week-number"></p>
</li>
</ul>
</article>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="/script.js"></script>
</body>
</html>