-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
139 lines (128 loc) · 4.94 KB
/
index.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,400;0,700;1,700&display=swap"
rel="stylesheet"
/>
<!-- Favicon -->
<link rel="shortcut icon" href="./assets/img/favicon/favicon.ico" type="image/x-icon" id="favicon" />
<!-- Themes -->
<link rel="stylesheet" href="styles/style.css" />
<link id="cache" rel="stylesheet" href="styles/sailorNightTheme.css" />
<link id="theme" rel="stylesheet" href="styles/sailorDayTheme.css" />
<title>GifOS</title>
</head>
<body>
<header class="main-title">
<h1 class="main-title__text">
¡Bienvenidos/as a Guifos.com! ——————Donde los gifs están.////// Número de visitas: 12.765.803
</h1>
</header>
<main class="container">
<nav class="nav">
<a href="index.html"><img id="logo" class="nav__logo" src="assets/img/gifOF_logo.png" alt="gifOS Logo" /></a>
<ul class="nav__btns">
<li><a class="btn btn-default" href="mygifos.html">Crear Guifos</a></li>
<li>
<ul class="nav__secondary-btn">
<li class="btn btn-default">Elegir tema</li>
<li class="btn btn-default-small"><img src="assets/svg/dropdown.svg" alt="dropdown" /></li>
</ul>
<div class="nav__dropdown hidden">
<button id="day-theme-btn" class="btn btn-adaptable btn-theme" type="button">
<span class="underline">S</span>ailor Day
</button>
<button id="night-theme-btn" class="btn btn-adaptable btn-theme" type="button">Sailor Night</button>
</div>
</li>
<li class="nav__link">
<button id="myGifos_btn" class="btn-link" type="button"><span class="underline">M</span>is Guifos</button>
</li>
</ul>
</nav>
<section class="search">
<div class="search-title">
<h2 class="search-title__text">Buscar</h2>
</div>
<form class="search-content" method="GET">
<label for="search-input"></label>
<input
class="search-input"
id="search-input"
type="text"
autocomplete="off"
placeholder="Busca gifs, temas, busca lo que quieras..."
/>
<button class="btn btn-search" type="submit">
<img id="search-icon" src="assets/svg/lupa.svg" alt="lupa" /> Buscar
</button>
</form>
</section>
<div class="autocomplete hidden"></div>
<div class="related"></div>
<div>
<section class="today">
<header class="today-title section-header">
<h2 class="section-header__title">Hoy te sugerimos:</h2>
</header>
<div class="today__container">
<div class="today__item">
<div class="item-header">
<p class="item-header__text">#LoremIpsumDolor</p>
<img class="item-header__img" src="assets/svg/button3.svg" alt="close button" />
</div>
<img class="item__img" src="https://via.placeholder.com/280" alt="placeholder" />
<button class="btn btn-related item__btn" type="button">Ver más...</button>
</div>
<div class="today__item">
<div class="item-header">
<p class="item-header__text">#LoremIpsumDolor</p>
<img class="item-header__img" src="assets/svg/button3.svg" alt="close button" />
</div>
<img class="item__img" src="https://via.placeholder.com/280" alt="placeholder" />
<button class="item__btn" type="button">Ver más...</button>
</div>
<div class="today__item">
<div class="item-header">
<p class="item-header__text">#LoremIpsumDolor</p>
<img class="item-header__img" src="assets/svg/button3.svg" alt="close button" />
</div>
<img class="item__img" src="https://via.placeholder.com/280" alt="placeholder" />
<button class="item__btn" type="button">Ver más...</button>
</div>
<div class="today__item">
<div class="item-header">
<p class="item-header__text">#LoremIpsumDolor</p>
<img class="item-header__img" src="assets/svg/button3.svg" alt="close button" />
</div>
<img class="item__img" src="https://via.placeholder.com/280" alt="placeholder" />
<button class="item__btn" type="button">Ver más...</button>
</div>
</div>
</section>
<section class="tendencies">
<header class="tendencies__title section-header">
<h2 class="section-header__title">Tendencias:</h2>
</header>
<div class="tendencies-container"></div>
</section>
<section class="results hidden">
<header class="results-title section-header">
<h2 class="section-header__title">Ejemplo de búsqueda (resultados)</h2>
</header>
<div class="results-container"></div>
</section>
<section class="my-gifos hidden">
<header class="my-gifos-title section-header">
<h2 class="section-header__title">Mis guifos</h2>
</header>
<div id="loaded-gifs" class="saved-container"></div>
</section>
</div>
</main>
<script src="main.js"></script>
</body>
</html>