-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcalendar.html
51 lines (46 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" />
<link rel="stylesheet" href="./assets/css/calendar.css" type="text/css" />
<title>Calendar</title>
</head>
<body>
<!-- Header -->
<div class="row col-12">
<header class="col-11">
<a href="./index.html">
<h1>Formula 1 Frenzy</h1>
</a>
</header>
<div class="col-1 dropdown text-right">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="./calendar.html">Upcoming</a>
<a href="./drivers.html">Driver’s Standing</a>
<a href="./news.html">News</a>
</div>
</div>
<div class="col-1">
<i class="fa-solid fa-magnifying-glass"></i>
</div>
</div>
<!-- Calendar -->
<main>
<h2 class="text-center fs-1 fw-bold mb-5">2022 Race Calendar</h2>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"
integrity="sha256-T0Vest3yCU7pafRw9r+settMBX6JkKN06dqBnpQ8d30=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.0/dayjs.min.js"></script>
<script src="./assets/javascript/calendar.js"></script>
</body>
</html>