-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
73 lines (61 loc) · 2.12 KB
/
aboutme.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
<!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="assets/estilos/style.css">
<title>PROYECTO JS AND JSQUERY</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.css">
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="assets/jquery/jquery-3.6.0.min.js"></script>
<script src="assets/jquery/funcionesJquery.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/bxslider/4.2.12/jquery.bxslider.min.js"></script>
<script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#accordion" ).accordion({
collapsible: true
});
});
</script>
</head>
<body class="container">
<header>
<h1 id="titulo">PRACTICANDO JS</h1>
<input type="text" placeholder="¿Que quieres buscar?"><span><img src="" alt=""></span>
</header>
<nav>
<ul>
<li><a href="index.html">INCIO</a></li>
<li><a href="#">CALCULADORA</a></li>
<li><a href="#">RELOJ</a></li>
<li><a href="#">JUEGO CHAPUZA</a></li>
<li><a href="aboutme.html">CONTACTO</a></li>
</ul>
</nav>
<div id="accordion">
<h3>QUIENES SOMOS</h3>
<div>
NOS DEDICAMOS DESARROLLO WEB
</div>
<h3>INTEGRANTES</h3>
<div>
<p>JAN CHRIS</p>
</div>
<h3>DONDE NOS UBICAMOS</h3>
<div>
<p>HEREDIA</p>
</div>
<h3>CONTACTO</h3>
<div>
<p>72605606</p>
</div>
</div>
<footer>
<h4>MASTER EN JAVASCRIPT JAN SOLIS ©</h4>
</footer>
</body>
</html>