-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (55 loc) · 2 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
<!doctype html>
<html lang="en" data-day="0">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Do you want to know if today is an specific day of the week?">
<meta name="author" content="José A. Romero">
<meta property="og:title" content="Is it -choose a day-?">
<meta property="og:type" content="website">
<meta property="og:url" content="">
<meta property="og:description" content="Do you want to know if today is an specific day of the week?">
<link rel="stylesheet" href="./css/flag-icons.min.css">
<link rel="stylesheet" href="./css/fontawesome.min.css">
<link rel="stylesheet" href="./css/pico.min.css">
<link rel="stylesheet" href="./css/base.min.css">
<title></title>
</head>
<body>
<header>
<nav class="container">
<ul>
</ul>
<ul>
<li>
<a href="https://www.linkedin.com/in/jromero132/" class="no-link linkedin-color scale-on-hover" style="margin-right: 0;"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://github.com/jromero132" class="no-link github-color scale-on-hover"><i class="fa-brands fa-github"></i></a>
</li>
</ul>
</nav>
</header>
<main class="container">
<details open>
<summary role="button">
<i class="fa-solid fa-globe"></i> Choose a day
</summary>
<article>
<div class="grid">
<ul>
<li><a href="./sunday">Sunday</a></li>
<li><a href="./monday">Monday</a></li>
<li><a href="./tuesday">Tuesday</a></li>
<li><a href="./wednesday">Wednesday</a></li>
<li><a href="./thursday">Thursday</a></li>
<li><a href="./friday">Friday</a></li>
<li><a href="./saturday">Saturday</a></li>
</ul>
</div>
</div>
</article>
</details>
</main>
<script src="./js/jquery-3.6.0.min.js"></script>
<script src="./js/scripts.min.js"></script>
</body>
</html>