generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
calendar.html
86 lines (82 loc) · 3.35 KB
/
calendar.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="keywords" content="aikido, games, technique, Hirakudo, Del Plato Liberato" />
<meta name="description" content="info page about the Hirakudo Academy with a memory game where to learn the name of technique " />
<meta name="author" content="Carmine Pastena" />
<title>When does Hirakudo Academy have lesson</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="./assets/css/calendar.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" />
<!-- JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<header>
<nav>
<!-- button bar -->
<input type="checkbox" id="check">
<label for="check" class="checkbtn">
<i class="fas fa-bars sidebar-btn"></i>
</label>
<!-- logo -->
<a class="logo" href="index.html"><img id="logo" src="./assets/images/accademia-hirakudo.svg" alt="Hirakudo Logo"></a>
<!-- navbar to mobile and tablet mode -->
<ul class="navbar-nav">
<li class="nav-item">
<a href="index.html"><i class="fas fa-home"></i></a>
</li>
<li class="nav-item" id="themeButton">
<a href="#" class="themify"><i class="fas fa-adjust"></i></a>
</li>
</ul>
</nav>
</header>
<main class="calendar-container">
<section class="calendar">
<div class="month">
<i class="fas fa-angle-left prev"></i>
<div class="date">
<h1></h1>
<p></p>
</div>
<i class="fas fa-angle-right next"></i>
</div>
<div class="header-event">
<h2>Today Class Schedule:</h2>
</div>
<div id="event">
</div>
<table class="calendar">
<thead>
<tr class="weekdays">
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody>
<tr class="days"></tr>
</tbody>
</table>
</section>
<aside class="container">
<!-- fixed sidebar in laptop and desktop mode -->
<section class="sidebar">
<a href="index.html"><i class="fas fa-home"></i><span class="link-text">Home</span></a>
<a href="#" class="themify"><i class="fas fa-adjust"></i><span class="link-text">Switch</span></a>
</section>
</aside>
</main>
<!-- load my scripts -->
<script src="./assets/scripts/calendar.js" defer></script>
<script src="./assets/scripts/shortscripts.js" defer></script>
</body>
</html>