-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
97 lines (93 loc) · 4.36 KB
/
details.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
<!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="./css/style.css">
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:400,500,700,900" rel="stylesheet">
<script src="https://kit.fontawesome.com/0e29a92e8b.js" crossorigin="anonymous"></script>
<title>DETAILS - Amazing events</title>
</head>
<body>
<header>
<div class="head_container">
<div class="logo">
<img src="./assets/images/Logo.png">
</div>
<div class="menu" id="myTopnav">
<ul>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="openNav()">☰</a>
<li><a href="./index.html">Home</a></li>
<li><a href="./pastevents.html">Past Events</a></li>
<li><a href="./upcoming.html">Upcoming Events</a></li>
<li><a href="./contact.html">Contact</a></li>
<li><a href="./stats.html">Stats</a></li>
</ul>
</div>
</div>
</header>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="./index.html">Home</a>
<a href="./pastevents.html">Past Events</a>
<a href="./upcoming.html">Upcoming Events</a>
<a href="./contact.html">Contact</a>
<a href="./stats.html">Stats</a>
<p style="color: #dee3ea; text-align: center; text-shadow: 1px 1px 10px black;font-weight: bold;">Dferprojects © 2023</p>
</div>
<section class="heading-h1 d-flex justify-content-center align-items-center">
<h1 class="text-light">Details</h1>
</section>
<main id="app" class="d-flex justify-content-center align-items-center">
<div id="detailed-card" class="detailed-card" v-if = "detailsOnly">
<h2>{{detailsOnly.name}}</h2>
<div class="imgDesc">
<figure>
<img class="detailed-img" :src= "detailsOnly.image" :alt="detailsOnly.name">
<dt>Description:</dt>
<h6 class="text-detail">{{detailsOnly.description}}</h6>
</figure>
<section class="detailed-descrip">
<dl>
<dt>Date:</dt>
<dd>{{detailsOnly.date}}</dd>
<dt>Category:</dt>
<dd>{{detailsOnly.category}}</dd>
<dt>Place:</dt>
<dd>{{detailsOnly.place}}</dd>
<dt>Capacity:</dt>
<dd>{{detailsOnly.capacity}}</dd>
<dt>Price:</dt>
<dd>{{detailsOnly.price}}</dd>
</dl>
</section>
</div>
</div>
</main>
<footer>
<div class="d-flex justify-content-evenly">
<div><img src="./assets/images/elmo.gif" alt="elmo">
</div>
<div class="d-flex flex-column justify-content-center align-items-center gap-2">
<h5>CONTACT ME!</h5>
<div class="d-flex gap-3">
<a href="https://www.linkedin.com/in/leojara-it/" target="_blank" class="fa-brands fa-linkedin"></a>
<a href="https://github.com/Dferprojects" target="_blank" class="fa-brands fa-github"></a>
<a href="https://www.instagram.com/leo.fjara/" target="_blank" class="fa-brands fa-instagram"></a>
</div>
</div>
</div>
<div class="copy d-flex justify-content-center align-items-center">
<h6>© 2023 - Sitio web desarrollado por Dferprojects</h6>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<script src="./js/hamburguesa.js"></script>
<script src="./js/details.js"></script>
</body>
</html>