Skip to content

Commit

Permalink
Create docs folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mgantunez committed Dec 27, 2024
1 parent d941205 commit 8e26f8b
Show file tree
Hide file tree
Showing 8 changed files with 113 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/assets/index-1e9d7c97.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/castillo-de-disney.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/favicon-96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/mickey_mouse_section characters.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/images/stitch section favourites.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
102 changes: 102 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<!DOCTYPE html>

<html lang="es">

<head>

<meta charset="UTF-8" />

<meta name="viewport" content="width=device-width, initial-scale=1" />

<title>Personajes de Disney</title>

<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">


<link rel="icon" href="./images/favicon-96x96.png" />

<link rel="stylesheet" href="./assets/index-1e9d7c97.css">
</head>


<body>

<header class="header">

</header>
<main class="main">

<form class="searchSection">

<input class="js_inputSearch searchSection__input" type="text" name="submit-search" id="submit-search"
placeholder="Ejemplo: Mickey Mouse">
<input class="js_btnSearch searchSection__btn" type="submit" value="Buscar">

</form>


<section class="main__structure">

<article class="allCharactersSection">

<div class="allCharactersSection__header">

<h1 class="allCharactersSection__title">
Listado de personajes de Disney
</h1>

<img class="allCharactersSection__imageMickey" src="../images/mickey_mouse_section characters.png"
alt="Imagen de Mickey Mouse tumbado en sección de personajes de Disney">

</div>

<p class="js_characterNotFound"></p>

<ul class="js_characterUl allCharactersSection__list">

</ul>


</article>

<article class="charactersFavouriteSection">

<h2 class="charactersFavouriteSection__title">
Tus personajes favoritos
</h2>

<p class="js_favouritesCounter charactersFavourite__counter" style="display: none"></p>

<ul class="js_favouriteCharacterUl charactersFavouriteSection__list">

</ul>

<p class="js_descriptionTextFavourites charactersFavourite__text">Marca tus favoritos con el corazón
<i class="fa-solid fa-heart" style="color: red;"></i> y pasarán a formar parte de este listado
</p>

<img class="js_imageStitchFavourites charactersFavouriteSection__image"
src="../images/stitch section favourites.png" alt="Stitch con corazones en sección de personajes favoritos">

<button class="js_deleteAllFavouritesBtn charactersFavouriteSection__delete-btn" style="display: none">Borrar
todos los
favoritos</button>

</article>

</section>

</main>
<footer class="footer">

<p>María García Antúnez © Adalab 2024</p>

</footer>

<script src="./js/main.js"></script>

</body>

</html>
10 changes: 10 additions & 0 deletions docs/js/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8e26f8b

Please sign in to comment.