-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
101 lines (100 loc) · 3.06 KB
/
index.html
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./public/TabVista.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TabVista</title>
</head>
<body class="container fade-in" role="application">
<nav class="topLeft" role="navigation" aria-label="Settings menu">
<section class="app-insert">
<input type="text" name="task" placeholder="Groceries..." />
</section>
<section class="app-list">
<ul></ul>
</section>
</nav>
<section class="topRight" role="region" aria-label="Weather Information">
<div class="city no-select pointer" aria-live="polite"></div>
<div class="weatherContainer no-select pointer">
<div class="weather" aria-live="polite">
<img id="weatherIcon" src="" alt="" />
<span class="weatherTemp" id="weatherTemp"></span>
</div>
<span class="weatherDescription"></span>
</div>
<section class="weatherDetails no-select" aria-labelledby="weather-info">
<ul role="list">
<li role="listitem">
<dd class="feelsLikeValue hidden"></dd>
<dt class="feelsLike hidden">Feels like</dt>
</li>
<li role="listitem">
<dd class="humidityValue hidden"></dd>
<dt class="humidity hidden">Humidity</dt>
</li>
</ul>
</section>
</section>
<section class="center" role="region" aria-label="Clock and Mantra">
<h1 class="clock no-select" aria-live="polite"></h1>
<h2 class="mantra no-select" aria-live="polite">
<span id="greeting" class="greeting"></span>
<span class="name"></span>
</h2>
<form class="userForm">
<input
type="text"
id="firstName"
placeholder="Your first name"
required
/>
<input
type="email"
id="email"
placeholder="Enter your email"
required
/>
<button class="btn" type="submit">Submit</button>
</form>
</section>
<aside
class="bottomLeft no-select"
role="complementary"
aria-label="Background Image Details"
>
<p class="fade-in imageDetails">
<a href="" target="_blank" rel="noopener noreferrer" class="photoLink"
>Photo</a
>
by
<a
href=""
target="_blank"
rel="noopener noreferrer"
class="photographer"
></a>
</p>
</aside>
<aside
class="bottomCenter"
role="complementary"
aria-label="Inspirational Quote"
>
<blockquote class="quoteContainer">
<p id="quote"></p>
<cite class="quoteAuthor"></cite>
</blockquote>
</aside>
<aside
class="bottomRight no-select"
role="complementary"
aria-label="To Do List"
>
<!-- .bottomRight -->
</aside>
<script type="module" src="./src/js/main.js"></script>
<script type="module" src="./src/js/app.js"></script>
</body>
</html>