-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
179 lines (177 loc) · 5.72 KB
/
index.html
File metadata and controls
179 lines (177 loc) · 5.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="" id="favicon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calin Codes</title>
<script type="module" src="/main.js"></script>
</head>
<body class="flex-column flow">
<header class="primary-header flex">
<h1 class="fs-primary__heading ff-handlee">calin.codes</h1>
<div class="hamburger-menu__btn flex">
<div class="mobile-nav__toggle"></div>
</div>
<nav>
<ul
class="primary-navigation underlined-indicators flex-column uppercase"
>
<li class="active" aria-selected="true">
<a href="index.html">Home</a>
</li>
<li><a href="./pages/projects.html">Projects</a></li>
<li><a href="./pages/about.html">About</a></li>
<li><a href="./pages/contact.html">Contact</a></li>
<li class="logo-container">
<a href="index.html">
<img src="" alt="logo" id="logo" class="logo" />
</a>
</li>
</ul>
</nav>
</header>
<main class="homepage-main flex-column flow">
<section
class="image-animation__container flex center-text"
aria-hidden="true"
>
<div></div>
<div></div>
<div></div>
<div></div>
<p
class="image-animation__text fs-primary__heading ff-handlee"
data-text="Hello, world!"
>
Hello, world!
</p>
</section>
<section class="introduction center-text flow">
<h2 class="introduction-heading fs-primary__heading ff-handlee">
I am
<span class="intro-name" id="intro-name" data-text="Calin!"
>Calin!</span
>
</h2>
<h3 class="intro-role uppercase fw-600" id="intro-role">
web developer
</h3>
<p class="intro-text ff-primary fs-" id="intro-text">
<q
cite="https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Responsive_Design"
>Responsiveness is a fundamental component of a good user
experience.</q
>
And to code
<span class="responsive-text uppercase fw-600" id="responsive-text"
><a
target="_blank"
rel="noopener noreferrer external"
href="https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Responsive_Design"
>"responsive websites"</a
></span
>
is one of my biggest passions in web development.
</p>
<form action="./pages/contact.html" class="main-contact__form">
<button type="submit">Contact</button>
</form>
</section>
<section class="contact-section flex-column">
<div class="social-media__container flex fs-body">
<a
href="https://www.linkedin.com/in/calin-szekely/"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/images/linkedin-round-icon.svg"
alt="linkedin"
id="linkedin"
title="LinkedIn"
/>
</a>
<a
href="https://github.com/calyn05/"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/images/github-icon.svg"
alt="github"
id="github"
title="Github"
/>
</a>
<a
href="https://www.instagram.com/calyn.I.am/"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/images/black-instagram-icon.svg"
alt="instagram"
id="instagram"
title="Instagram"
/>
</a>
<a
href="mailto: contact@calin.codes"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/images/email-round-solid-icon.svg"
alt="email"
id="email"
title="Send me an email"
/>
</a>
<a
href="https://calyn05.github.io/resume-web-page/"
target="_blank"
rel="noopener noreferrer"
title="Resume web page"
>
<img src="./assets/images/resume-cv-icon.svg" alt="cv" id="cv" />
</a>
<a
href="https://google.com/maps/place/Bucharest"
target="_blank"
rel="noopener noreferrer"
>
<img
src="./assets/images/user-map-location-icon.svg"
alt="location"
id="location"
title="Bucharest, Romania"
/>
</a>
</div>
</section>
<!-- Start text animation -->
<div class="text-animation__container flex fs-body" data-visible="false">
<p
class="animation-text fs-primary__heading ff-handlee"
data-text="calin.codes"
>
calin.codes
</p>
</div>
<!-- End text animation -->
</main>
<canvas aria-hidden="true"></canvas>
<footer class="primary-footer flex-column flow center-text">
<nav>
<ul class="footer-navigation flex uppercase">
<li><a href="./index.html">Home</a></li>
<li><a href="./pages/projects.html">Projects</a></li>
<li><a href="./pages/about.html">About me</a></li>
<li><a href="./pages/contact.html">Contact</a></li>
</ul>
</nav>
<p class="fs-body ff-primary">© 2022 Made with 💚 by Calin.Codes.</p>
</footer>
</body>
</html>