-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
190 lines (166 loc) · 5.24 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<link rel="stylesheet" href="assets/css/styles.css" />
<link rel="stylesheet" href="assets/css/colors.css" />
<title>Goals 2024</title>
<!-- ICONS BOXICONS -->
<link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'>
<!-- SEO -->
<meta
name="description"
content="2024 web development goals"
/>
<link
rel="canonical"
href="https://bluediu.github.io/2024-goals/"
/>
<link
rel="icon"
href="https://bluediu.github.io/2024-goals/assets/img/app-icon.png"
/>
<link
rel="apple-touch-icon"
href="https://bluediu.github.io/2024-goals/assets/img/app-icon.png"
/>
<meta name="theme-color" content="#1B4F72" />
<meta name="twitter:card" content="summary" />
<meta property="og:type" content="website" />
<meta
property="og:title"
name="twitter:title"
content="2024 goals - bluediu"
/>
<meta
property="og:description"
name="twitter:description"
content="2024 web development goals"
/>
<meta
property="og:image"
name="twitter:image"
content="https://bluediu.github.io/2024-goals/assets/img/blue_mountains.png"
/>
<meta
property="og:url"
name="twitter:url"
content="https://bluediu.github.io/2024-goals/"
/>
</head>
<body>
<!-- ===== HEADER =====-->
<header class="app-header">
<nav class="nav bd-grid">
<a href="#" class="nav__logo">jrivas</a>
<div class="nav__toggle" id="nav-toggle">
<i class='bx bx-menu-alt-right' ></i>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="#objetives" class="nav__link"
>Objetives</a
>
</li>
<li class="nav__item">
<a href="#goals" class="nav__link">Goals</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<!-- ===== HOME =====-->
<div class="home">
<div class="parallax home__parallax">
<section class="hero-image-opacity">
<h1 class="parallax home__title">Josué Rivas</h1>
<span class="parallax home__subtitle"
>Web Developer</span
>
<div class="home__scroll">
<a href="#section"><i class='bx bx-mouse'></i></a>
</div>
</section>
</div>
</div>
</div>
<!-- ===== SECTION =====-->
<section class="l-section" id="section">
<div class="section">
<div class="section__data">
<h2 class="section__title" id="objetives">
2024 Goals ✨
</h2>
<p class="section__text">
Striving to learn new web technologies, crucial in today's landscape.
Exploring both front-end and back-end development, with the goal of
mastering foundational technologies by the end of 2024.
</p>
</div>
<img
src="assets/img/goals.svg"
loading="lazy"
alt="goals"
class="section__img"
/>
</div>
</section>
<!-- ===== Skill Cards =====-->
<section class="skills">
<h3 class="skills-text">🥊 Skills</h3>
<div class="levels">
<div class="level-image">
<img src="assets/img/skills.svg" alt="" />
</div>
<section class="level">
<div class="level-color">
<p>1%-19% = <span class="basic">Beginner</span></p>
</div>
<div class="level-color">
<p>
20%-49% =
<span class="intermediate">Basic</span>
</p>
</div>
<div class="level-color">
<p>
50%-69% =
<span class="semi-advanced">Intermediate</span>
</p>
</div>
<div class="level-color">
<p>
70%-100% = <span class="advanced">Advanced</span>
</p>
</div>
</section>
</div>
<div class="filter-container">
<select class="status-filter filter" id="status-filter">
<option value="ALL" selected>All Statuses</option>
<option value="COMPLETED">Completed</option>
<option value="WIP">Learning</option>
<option value="PENDING">Pending</option>
</select>
</div>
</section>
<!-- ===== Goals Cards =====-->
<section id="goals" class="card-container" id="cards-container"></section>
</main>
<!-- GSAP -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.2.6/gsap.min.js"></script>
<!-- SCROLL REVEAL -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- MAIN JS -->
<script src="assets/js/main.js" type="module"></script>
</body>
</html>