-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpast_events.html
65 lines (60 loc) · 2.8 KB
/
past_events.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Amazing Events</title>
<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="description" content="What does it take to turn an ordinary event into an amazing event? It takes energy, creativity, ingenuity and an over-developed sense of fun! Let us take your goals, ideas, dreams and visions and make them come to life! If it can be done, Amazing Events® can do it with style.">
<meta name="keywords" content="Events, Amazing Events">
<link rel="stylesheet" href="./assets/style/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<link rel="shortcut icon" href="./assets/img/icon.png" type="image/x-icon">
</head>
<body>
<header>
<nav>
<img src="./assets/img/Logo_Amazing_Events.png" alt="Logo de Amazing Events" width="100px">
<div class="menuNav">
<button id="menu"><i class="bi bi-list"></i></button>
<ul class="menu-visible">
<li><a href="./index.html">Home</a></li>
<li><a href="./upcoming_events.html">Upcoming Events</a></li>
<li><a href="#">Past Events</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./stats.html">Stats</a></li>
</ul>
</div>
</nav>
<div class="container-fluid hero fade-in">
<button><i class="bi bi-chevron-left"></i></button>
<h1>Past Events</h1>
<button><i class="bi bi-chevron-right"></i></button>
</div>
</header>
<main>
<div class="container-fluid fade-in">
<form class="search">
</form>
</div>
<div class="cards">
<div class="loader"></div>
</div>
</main>
<footer>
<div class="social">
<button><i class="bi-instagram"></i></button>
<button><i class="bi-facebook"></i></button>
<button><i class="bi-whatsapp"></i></button>
</div>
<p>Almendra Romina 2023 ©</p>
</footer>
<script src="./js/main.js"></script>
<script src="./js/past_events.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
</body>
</html>