-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
66 lines (60 loc) · 2.31 KB
/
index.php
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
<!DOCTYPE html>
<html lang="es-EC">
<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
href="https://file.myfontastic.com/JUwFAwWE8oUWFGdiTZSWaX/icons.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="asserts/css/normalize.css" />
<link rel="stylesheet" href="asserts/css/styles.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Codfast</title>
<link rel="icon" type="image/png" href="./asserts/img/logo.png" />
</head>
<body>
<div class="container-main">
<header class="header">
<div class="container container--header">
<div class="logo">
<img src="./asserts/img/logo.png" alt="logo" class="logo__icono" />
<h1 class="logo__title" id ="title-js">CodFast</h1>
</div>
<div class="redes_sociales">
<a href="https://github.com/RonnyChamba" target="_blank" class="icon-">
<i class="fa-brands fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/ronny-chamba-8273911b7/" target="_blank" class="icon-">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
</div>
</header>
<main class="main">
<div class="busqueda">
<input
type="search"
placeholder="Escribe algo..."
class="busqueda__input"
id="busqueda-js"
/>
</div>
<div class="cards">
<?php
include("card/StreamFiltrarString.php");
include("card/CardConvertirListaEnteros.php");
include("card/CardContarListaEnteros.php");
include("card/CardOrdenarElementosLista.php");
include("card/CardOrdenarElementosListaComparator.php");
?>
</div>
</main>
<footer class="footer">
<p>Ronny Chamba © 2021</p>
</footer>
</div>
<script src="asserts/script/script.js" type="module"></script>
</body>
</html>