-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
204 lines (198 loc) · 5.32 KB
/
index.html
File metadata and controls
204 lines (198 loc) · 5.32 KB
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dynamic Portfolio - Alessandro Morales</title>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/27b7811fdd.js"
crossorigin="anonymous"
></script>
<!-- Google fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,700;1,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div class="container">
<header>
<div class="logo">
<h1>Alessandro Morales</h1>
<p>Web Developer</p>
</div>
<form>
<input
type="text"
class="search-bar"
id="search-bar"
placeholder="Search"
/>
</form>
<div id="categories">
<nav class="categories" role="navigation">
<ul>
<li>
<a href="#" class="active">All</a>
</li>
<li>
<a href="#">Nature</a>
</li>
<li>
<a href="#">Cities</a>
</li>
<li>
<a href="#">Persons</a>
</li>
<li>
<a href="#">Animals</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="grid" id="grid">
<div
class="item"
data-category="cities"
data-labels="landscape cities cars street"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/ciudad1.png" alt="image city" />
</div>
</div>
<div
class="item"
data-category="animals"
data-labels="nature animals lions"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/animal1.png" alt="image lion" />
</div>
</div>
<div
class="item"
data-category="animals"
data-labels="panda nature animals"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/animal2.png" alt="Image of Panda" />
</div>
</div>
<div
class="item"
data-category="cities"
data-labels="landscape cities cars street ocean beach"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/ciudad2.png" alt="Image city" />
</div>
</div>
<div
class="item"
data-category="nature"
data-labels="nature tree leaf"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/naturaleza1.png" alt="image nature" />
</div>
</div>
<div
class="item"
data-category="nature"
data-labels="landscape beach ocean"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/paisaje1.png" alt="image beach" />
</div>
</div>
<div
class="item"
data-category="nature"
data-labels="landscape mountains clouds sky"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/paisaje2.png" alt="image mountain" />
</div>
</div>
<div
class="item"
data-category="persons"
data-labels="peoples persons girl"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/persona1.png" alt="image girl" />
</div>
</div>
<div
class="item"
data-category="persons"
data-labels="peoples persons girl"
data-desc="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
>
<div class="item-content">
<img src="./img/persona2.png" alt="image girl" />
</div>
</div>
</section>
<section class="overlay" id="overlay">
<div class="image-container">
<button id="close-popup"><i class="fas fa-times"></i></button>
<img src="" alt="image city" />
</div>
<p class="desc"></p>
</section>
<footer class="container">
<div class="social-media">
<div class="icon-container">
<a
href="https://twitter.com/alssdev"
target="_blanck"
class="twitter"
>
<i class="fab fa-twitter"></i>
</a>
</div>
<div class="icon-container">
<a
href="https://instagram.com/alssdev"
target="_blanck"
class="instagram"
>
<i class="fab fa-instagram"></i>
</a>
</div>
<div class="icon-container">
<a
href="https://github.com/alssdev"
target="_blanck"
class="github"
>
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div class="attribution">
<p>
Este sitio ha sido diseñado por
<a href="https://github.com/alssdev" target="_blanck">@Alssdev</a>
- Alessandro Morales
</p>
</div>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/web-animations-js@2.3.2/web-animations.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/muuri@0.9.3/dist/muuri.min.js"></script>
<script src="./main.js"></script>
</body>
</html>